/* --- Guest Experiences Section --- */
.guest-experiences {
  padding: 80px 20px;
  background-color: #f5efe6;
  font-family: 'Georgia', serif;
}

.ge-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.ge-header {
  text-align: center;
  margin-bottom: 50px;
}

.ge-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8936a;
  margin: 0 0 12px;
}

.ge-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: #2c2415;
  margin: 0;
  line-height: 1.3;
}

.ge-divider {
  width: 55px;
  height: 2px;
  background: #b8936a;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Grid */
.ge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.ge-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #2c2415;
  aspect-ratio: 9 / 13;
  cursor: pointer;
  border: 2px solid #e0d4c3;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ge-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(44, 36, 21, 0.25);
  border-color: #b8936a;
}

.ge-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

/* Overlay */
.ge-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(44, 36, 21, 0.4);
  transition: background 0.3s ease;
}

.ge-card:hover .ge-overlay {
  background: rgba(44, 36, 21, 0.12);
}

/* Play button */
.ge-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #b8936a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.ge-card:hover .ge-play-btn {
  transform: scale(1.15);
  background: #d4a97a;
}

.ge-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 4px;
}

/* Card label badge */
.ge-card-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  color: #f0e6d6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(44, 36, 21, 0.55);
  padding: 5px 12px;
  border-radius: 20px;
}

/* External link button (top right on hover) */
.ge-ext-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(184, 147, 106, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-decoration: none;
}

.ge-card:hover .ge-ext-link {
  opacity: 1;
}

.ge-ext-link svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .ge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ge-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 560px) {
  .ge-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .guest-experiences {
    padding: 50px 16px;
  }
}

/* Whatsapp Rooms Page Popup Css  */
/* ══════════════ OVERLAY ══════════════ */
.bk-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999999;
  background: rgba(8,14,8,0.75);
  align-items: center; justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bk-overlay.open { display: flex; }

/* ══════════════ MODAL BOX ══════════════ */
.bk-modal {
  background: #faf8f4;
  width: 100%; max-width: 540px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  animation: bkSlideIn .35s cubic-bezier(.22,.61,.36,1) both;
  max-height: 95vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b89a5a transparent;
}
.bk-modal::-webkit-scrollbar { width: 4px; }
.bk-modal::-webkit-scrollbar-thumb { background: #b89a5a; }

@keyframes bkSlideIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════ HEADER BAND ══════════════ */
.bk-header {
  background: #2a3d2a;
  padding: 30px 36px 24px;
  position: relative;
}
.bk-header-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: #d4b87a; margin-bottom: 6px; display: block;
}
.bk-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: #fff; letter-spacing: 1px;
  line-height: 1.2; margin: 0;
}
.bk-header-room {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic;
  color: rgba(255,255,255,.55);
  margin-top: 4px; display: block;
}

/* Close button */
.bk-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  color: rgba(255,255,255,.45);
  font-size: 26px; cursor: pointer; line-height: 1;
  font-family: sans-serif;
  transition: color .2s; padding: 4px 8px;
}
.bk-close:hover { color: #d4b87a; }

/* ══════════════ FORM BODY ══════════════ */
.bk-body { padding: 32px 36px 30px; }

.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-row.full { grid-template-columns: 1fr; }

.bk-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.bk-field:last-child { margin-bottom: 0; }

.bk-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #7a7060;
}

.bk-input,
.bk-select,
.bk-textarea {
  font-family: 'Jost', sans-serif;
  font-size: 14px; color: #2c2a26;
  background: #fff;
  border: 1.5px solid rgba(184,154,90,0.28);
  padding: 11px 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.bk-input:focus,
.bk-select:focus,
.bk-textarea:focus {
  border-color: #b89a5a;
  box-shadow: 0 0 0 3px rgba(184,154,90,0.12);
}
.bk-input::placeholder,
.bk-textarea::placeholder { color: #b0a898; font-style: italic; }

/* Select arrow */
.bk-select-wrap { position: relative; }
.bk-select-wrap::after {
  content: '▾';
  position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%);
  color: #b89a5a; font-size: 14px;
  pointer-events: none;
}
.bk-select { padding-right: 32px; cursor: pointer; }

.bk-textarea { resize: vertical; min-height: 84px; }

/* Room name field — read-only style */
.bk-input[readonly] {
  background: #f0ece3;
  color: #2a3d2a; font-weight: 600;
  border-color: rgba(184,154,90,0.18);
  cursor: default;
}

/* ══════════════ GOLD DIVIDER ══════════════ */
.bk-divider {
  border: none; border-top: 1px solid rgba(184,154,90,0.2);
  margin: 22px 0;
}

/* ══════════════ SUBMIT BUTTON ══════════════ */
.bk-submit {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 24px;
  background: #2a3d2a; color: #fff;
  border: 2px solid #2a3d2a;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .3s, border-color .3s, color .3s;
  margin-top: 24px;
}
.bk-submit:hover { background: #b89a5a; border-color: #b89a5a; color: #2a3d2a; }
.bk-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Note */
.bk-note {
  font-family: 'Jost', sans-serif;
  font-size: 11px; color: #a09080;
  text-align: center; margin-top: 12px;
  line-height: 1.7; letter-spacing: .3px;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:560px) {
  .bk-header { padding: 26px 22px 20px; }
  .bk-body   { padding: 24px 22px 22px; }
  .bk-row    { grid-template-columns: 1fr; }
  .bk-header-title { font-size: 24px; }
}

 .gdr-section {
    padding: 90px 0;
    background: #f5f0e8;
  }
  .gdr-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .gdr-eyebrow {
    font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b89a5a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .gdr-eyebrow::before,
  .gdr-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: #b89a5a;
    display: inline-block;
  }
  .gdr-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: #2a3d2a;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }
  .gdr-heading em {
    font-style: italic;
    color: #b89a5a;
  }
  .gdr-header-desc {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: #7a7060;
    max-width: 560px;
    margin: 0 auto;
  }

  /* ── 3-IMAGE ROW ── */
  .gdr-images {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.85fr;
    gap: 14px;
    margin-bottom: 64px;
    height: 400px;
  }
  .gdr-img-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
  }
  .gdr-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .gdr-img-item:hover img {
    transform: scale(1.05);
  }
  .gdr-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 18px 16px;
    background: linear-gradient(transparent, rgba(20, 30, 20, 0.72));
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
  }

  /* ── CONTENT GRID ── */
  .gdr-content {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    align-items: start;
  }
  .gdr-divider-v {
    background: rgba(184, 154, 90, 0.25);
    height: 100%;
    min-height: 160px;
  }
  .gdr-block {
    padding: 0 44px;
  }
  .gdr-block:first-child { padding-left: 0; }
  .gdr-block:last-child  { padding-right: 0; }
  .gdr-block-icon {
    font-size: 22px;
    color: #b89a5a;
    margin-bottom: 14px;
    display: block;
  }
  .gdr-block-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #2a3d2a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  .gdr-block-desc {
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    line-height: 1.85;
    color: #7a7060;
    margin-bottom: 16px;
  }
  .gdr-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .gdr-block-list li {
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    color: #2c2a26;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .gdr-block-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #b89a5a;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── BOTTOM BAR ── */
  .gdr-bottom {
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(184, 154, 90, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .gdr-bottom-note {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: #2a3d2a;
    opacity: 0.7;
  }
  .gdr-meal-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .gdr-meal-pill {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a3d2a;
    border: 1px solid rgba(184, 154, 90, 0.5);
    padding: 8px 18px;
    background: #fff;
  }
  .gdr-meal-pill strong {
    color: #b89a5a;
    margin-right: 5px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .gdr-images {
      grid-template-columns: 1fr 1fr;
      height: 500px;
    }
    .gdr-img-item:last-child {
      grid-column: span 2;
      height: 220px;
    }
    .gdr-content {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .gdr-divider-v { display: none; }
    .gdr-block,
    .gdr-block:first-child,
    .gdr-block:last-child { padding: 0; }
  }
  @media (max-width: 600px) {
    .gdr-section { padding: 60px 0; }
    .gdr-images {
      grid-template-columns: 1fr;
      height: auto;
    }
    .gdr-img-item        { height: 220px; }
    .gdr-img-item:last-child {
      grid-column: span 1;
      height: 220px;
    }
    .gdr-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /*Shooting video page css*/
  #yt-videos-section {
      background-color: #f5ede0;
      padding: 80px 20px 90px;
      font-family: 'Georgia', serif;
      text-align: center;
    }

    #yt-videos-section .yt-eyebrow {
      display: block;
      font-family: 'Trebuchet MS', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b5884a;
      margin-bottom: 14px;
    }

    #yt-videos-section .yt-heading {
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 400;
      color: #2b1f14;
      margin: 0 auto 14px;
      max-width: 750px;
      line-height: 1.3;
    }

    #yt-videos-section .yt-divider {
      width: 60px;
      height: 3px;
      background: #b5884a;
      border: none;
      margin: 0 auto 50px;
      border-radius: 2px;
    }

    #yt-videos-section .yt-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }

    #yt-videos-section .yt-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.18);
      background: #2b1f14;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #yt-videos-section .yt-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.25);
    }

    #yt-videos-section .yt-embed {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
    }

    #yt-videos-section .yt-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    @media (max-width: 700px) {
      #yt-videos-section .yt-grid {
        grid-template-columns: 1fr;
      }
    }
    
 #film-shoots-section {
      background-color: #f5ede0;
      padding: 80px 20px 90px;
      font-family: 'Georgia', serif;
      text-align: center;
    }
    #film-shoots-section .fss-eyebrow {
      display: block;
      font-family: 'Trebuchet MS', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b5884a;
      margin-bottom: 14px;
    }
    #film-shoots-section .fss-heading {
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 400;
      color: #2b1f14;
      margin: 0 auto 14px;
      max-width: 700px;
      line-height: 1.25;
    }
    #film-shoots-section .fss-divider {
      width: 60px;
      height: 3px;
      background: #b5884a;
      border: none;
      margin: 0 auto 50px;
      border-radius: 2px;
    }
    #film-shoots-section .fss-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto 40px;
    }
    #film-shoots-section .fss-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.18);
      cursor: pointer;
    }
    #film-shoots-section .fss-card img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    #film-shoots-section .fss-card:hover img {
      transform: scale(1.04);
    }
    #film-shoots-section .fss-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.30);
      transition: background 0.3s ease;
      z-index: 1;
    }
    #film-shoots-section .fss-card:hover::before {
      background: rgba(0,0,0,0.45);
    }
    #film-shoots-section .fss-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      z-index: 2;
      width: 68px;
      height: 68px;
      background: rgba(255,255,255,0.20);
      border: 2px solid rgba(255,255,255,0.85);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, background 0.3s ease;
      backdrop-filter: blur(4px);
    }
    #film-shoots-section .fss-card:hover .fss-play-btn {
      transform: translate(-50%, -50%) scale(1.12);
      background: rgba(181,136,74,0.75);
      border-color: #fff;
    }
    #film-shoots-section .fss-play-btn svg {
      width: 26px;
      height: 26px;
      fill: #fff;
      margin-left: 4px;
    }
    #film-shoots-section .fss-card-label {
      position: absolute;
      bottom: 16px;
      left: 18px;
      z-index: 2;
      color: #fff;
      font-family: 'Trebuchet MS', sans-serif;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0.9;
    }
    #film-shoots-section .fss-cta-wrap {
      margin-top: 10px;
    }
    #film-shoots-section .fss-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #2b1f14;
      color: #f5ede0;
      text-decoration: none;
      font-family: 'Trebuchet MS', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 16px 38px;
      border-radius: 60px;
      transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
      border: 2px solid #2b1f14;
    }
    #film-shoots-section .fss-cta-btn:hover {
      background: #b5884a;
      border-color: #b5884a;
      color: #fff;
      transform: translateY(-2px);
    }
    #film-shoots-section .fss-cta-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      transition: transform 0.25s ease;
    }
    #film-shoots-section .fss-cta-btn:hover svg {
      transform: translateX(4px);
    }
    @media (max-width: 700px) {
      #film-shoots-section .fss-grid {
        grid-template-columns: 1fr;
      }
      #film-shoots-section .fss-card img {
        height: 260px;
      }
    }
    
    /*film-Shooting page Css*/
    #gd-gallery-section {
    background-color: #f5ede0;
    padding: 80px 20px 90px;
    font-family: 'Georgia', serif;
    text-align: center;
  }

  #gd-gallery-section .gdg-eyebrow {
    display: block;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b5884a;
    margin-bottom: 14px;
  }

  #gd-gallery-section .gdg-heading {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 400;
    color: #2b1f14;
    margin: 0 auto 14px;
    max-width: 750px;
    line-height: 1.3;
  }

  #gd-gallery-section .gdg-divider {
    width: 60px;
    height: 3px;
    background: #b5884a;
    border: none;
    margin: 0 auto 50px;
    border-radius: 2px;
  }

  /* MASONRY GRID */
  #gd-gallery-section .gdg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }

  #gd-gallery-section .gdg-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    cursor: pointer;
  }

  /* Special sizes */
  #gd-gallery-section .gdg-item.tall   { grid-row: span 2; }
  #gd-gallery-section .gdg-item.wide   { grid-column: span 2; }

  #gd-gallery-section .gdg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  #gd-gallery-section .gdg-item:hover img {
    transform: scale(1.07);
  }

  /* Overlay */
  #gd-gallery-section .gdg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(43,31,20,0);
    transition: background 0.3s ease;
  }

  #gd-gallery-section .gdg-item:hover::after {
    background: rgba(43,31,20,0.30);
  }

  /* LIGHTBOX */
  #gdg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  #gdg-lightbox.open {
    display: flex;
  }

  #gdg-lightbox img {
    max-width: 90vw;
    max-height: 82vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
    object-fit: contain;
  }

  #gdg-lightbox .gdg-lb-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    font-family: sans-serif;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  #gdg-lightbox .gdg-lb-close:hover { opacity: 1; }

  #gdg-lightbox .gdg-lb-prev,
  #gdg-lightbox .gdg-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    font-family: sans-serif;
    user-select: none;
    transition: opacity 0.2s;
  }
  #gdg-lightbox .gdg-lb-prev { left: 20px; }
  #gdg-lightbox .gdg-lb-next { right: 20px; }
  #gdg-lightbox .gdg-lb-prev:hover,
  #gdg-lightbox .gdg-lb-next:hover { opacity: 1; }

  #gdg-lightbox .gdg-lb-counter {
    color: rgba(255,255,255,0.6);
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    margin-top: 14px;
    letter-spacing: 2px;
  }

  @media (max-width: 700px) {
    #gd-gallery-section .gdg-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 160px;
    }
    #gd-gallery-section .gdg-item.wide { grid-column: span 1; }
  }

  @media (max-width: 480px) {
    #gd-gallery-section .gdg-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
    }
    #gd-gallery-section .gdg-item.tall,
    #gd-gallery-section .gdg-item.wide { grid-row: span 1; grid-column: span 1; }
  }