.elementor-3377 .elementor-element.elementor-element-ae454a0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-3377 .elementor-element.elementor-element-f247b82{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-ae454a0 *//* ===============================
   STUDY ROOMS + ROOM RESERVATIONS PAGE FIXES
================================ */

/* Shared section styling */
.whlk-service-detail {
  margin: 60px 0;
  padding: 30px 24px;
  background: #F5F6F3;
  border-radius: 12px;
}

/* Center main headers + gold underline */
.whlk-service-detail h2 {
  font-family: "Merriweather", serif;
  font-size: 26px;
  font-weight: 700;
  color: #003F80;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.whlk-service-detail h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #C9A635;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Subheaders */
.whlk-service-detail h3 {
  font-family: "Merriweather", serif;
  font-size: 20px;
  font-weight: 700;
  color: #003F80;
  margin-bottom: 10px;
  text-align: left;
}

/* Section intro paragraph */
.whlk-service-detail p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #363636;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Grid layout for 2-column sections */
.whlk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

/* Study Room cards */
.whlk-resource-card {
  background: #EEF5FB;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.whlk-resource-card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.whlk-btn,
.whlk-btn:link,
.whlk-btn:visited {
  display: inline-block;
  background: #003F80;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none !important;
  text-align: center;
  transition: background 0.3s ease;
  margin: 6px;
}

.whlk-btn:hover {
  background: #005BAA;
  color: #fff !important;
}

/* Tables (Room Reservation Pricing) */
.whlk-service-detail table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  color: #363636;
}

.whlk-service-detail th,
.whlk-service-detail td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.whlk-service-detail th {
  background: #003F80;
  color: #fff;
  font-weight: 700;
}

.whlk-service-detail tr:nth-child(even) {
  background: #f8f9fb;
}

/* Fine-tune footer notes */
.whlk-service-detail p strong {
  color: #003F80;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .whlk-service-detail {
    padding: 20px 14px;
  }

  .whlk-service-detail h2 {
    font-size: 22px;
  }

  .whlk-btn {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-f247b82 *//* ===============================
   LINK STYLING (GLOBAL FIX)
================================ */
a, a:link, a:visited {
  color: #003F80;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover, a:focus {
  color: #005BAA;
  text-decoration: underline;
}

/* Make inline links inside .whlk-service-detail consistent */
.whlk-service-detail a {
  color: #003F80;
  font-weight: 600;
  text-decoration: none;
}
.whlk-service-detail a:hover {
  color: #005BAA;
  text-decoration: underline;
}

/* ===============================
   MEETING ROOM PHOTO GRID
================================ */
.whlk-room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.whlk-room-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whlk-room-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Captions under images */
.whlk-room-caption {
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  color: #363636;
  text-align: center;
  margin-top: 8px;
}/* End custom CSS */