/* =============================================================
   V.B. Zala Higher Secondary School — Main Stylesheet
   Structure:
     1. Design tokens (CSS variables)
     2. Base / reset
     3. Layout helpers (container, grid)
     4. Components (buttons, cards, eyebrow, forms)
     5. Header & navigation
     6. Footer
     7. Sections (hero, stats, features, gallery, faq, cta)
     8. Utilities & animations
     9. Responsive (media queries)
   ACF NOTE: Each section uses semantic, BEM-style classes so a
   WordPress theme can map ACF field groups 1:1 to sections.
   ============================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  --navy-900: #0b1f3a;
  --navy-800: #122a4e;
  --navy-700: #1a3a6b;
  --gold-500: #c9a14a;
  --gold-400: #d8b76a;
  --bg:        #fafaf7;
  --surface:   #ffffff;
  --text:      #18233a;
  --muted:     #5b6680;
  --border:    #e6e8ee;
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(11,31,58,.06);
  --shadow:    0 14px 40px rgba(11,31,58,.10);
  --shadow-lg: 0 28px 70px rgba(11,31,58,.18);
  --gradient-primary: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  --gradient-hero:    linear-gradient(180deg, rgba(11,31,58,.20) 0%, rgba(11,31,58,.85) 100%);
 --font-display: "Noto Sans Gujarati", "Playfair Display", Georgia, serif;
 --font-body:    "Noto Sans Gujarati", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container:    1200px;
}

/* ---------- 2. Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0; color: var(--navy-900); }
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section--alt { background: #f1f3f7; border-block: 1px solid var(--border); }
.grid      { display: grid; gap: 24px; }
.grid--2   { grid-template-columns: repeat(2, 1fr); }
.grid--3   { grid-template-columns: repeat(3, 1fr); }
.grid--4   { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.balance     { text-wrap: balance; }
.section__head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section__head p { color: var(--muted); margin-top: 14px; }

/* ---------- 4. Components ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy-700);
  background: rgba(201,161,74,.12); padding: 6px 12px; border-radius: 999px;
}
.eyebrow--gold { color: var(--gold-500); background: rgba(255,255,255,.10); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-700); box-shadow: var(--shadow); }
.btn--gold    { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); }
.btn--outline { border: 1.5px solid rgba(255,255,255,.6); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--navy-900); }
.btn--ghost   { color: var(--navy-900); }
.btn--ghost:hover { color: var(--gold-500); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(26,58,107,.08); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  transition: background .25s ease, color .25s ease;
}
.card:hover .card__icon { background: var(--gradient-primary); color: #fff; }
.card h3 { margin-bottom: 8px; }
.card p  { color: var(--muted); font-size: 14px; }

.form__field { margin-bottom: 16px; }
.form__field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form__field input,
.form__field textarea,
.form__field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 12px; font: inherit; background: #fff; color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none; border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(26,58,107,.10);
}

/* ---------- 5. Header & navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--gradient-primary); color: var(--gold-400);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.1; }
.brand__sub  { font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 10px 14px; border-radius: 999px; font-weight: 500; font-size: 14px;
  color: var(--text); transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.is-active { color: var(--navy-900); background: rgba(26,58,107,.06); }
.nav__cta { margin-left: 6px; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--border); align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy-900); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy-900);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

/* ---------- 6. Footer ---------- */
.site-footer {
  background: var(--navy-900); color: rgba(255,255,255,.78);
  padding: 72px 0 24px; margin-top: 80px;
}
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--gold-400); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: background .25s, color .25s;
}
.socials a:hover { background: var(--gold-500); color: var(--navy-900); }

/* ---------- 7. Sections ---------- */

/* Hero */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: var(--gradient-hero); }
.hero__content { position: relative; padding: 120px 0; max-width: 820px; }
.hero h1 { color: #fff; margin-top: 18px; }
.hero p { margin-top: 22px; font-size: 18px; max-width: 620px; color: rgba(255,255,255,.85); }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Stats */
.stats { background: #f1f3f7; border-block: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 32px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat__value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--navy-900); }
.stat__label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__body p { color: var(--muted); margin-top: 18px; }
.split__list { margin-top: 24px; }
.split__list li { display: flex; gap: 12px; padding: 6px 0; font-size: 14px; }
.split__list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); margin-top: 10px; flex: none; }

/* Steps / timeline */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.step__num {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient-primary); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 20px;
  margin: -56px auto 16px; box-shadow: var(--shadow);
}
.step__tag { color: var(--gold-500); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.step h3 { margin-top: 6px; }
.step p { color: var(--muted); font-size: 14px; margin-top: 10px; }

/* Activities */
.activity {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.activity:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.activity__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.activity__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.activity:hover .activity__media img { transform: scale(1.06); }
.activity__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); color: var(--navy-900);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
}
.activity__body { padding: 22px 24px 26px; }
.activity__body p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.gallery a { display: block; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery a:hover img { transform: scale(1.1); }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
.faq__list { border-block: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 0; }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 24px; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--navy-900);
}
.faq__icon {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--navy-700); transition: transform .25s, background .25s, color .25s;
  flex: none;
}
.faq__item.is-open .faq__icon { background: var(--navy-900); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .35s ease, padding .25s ease; padding-right: 40px; }
.faq__item.is-open .faq__a { max-height: 320px; padding-bottom: 22px; }

/* CTA */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--gradient-primary); color: #fff;
  padding: 64px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.cta::before {
  content: ""; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px;
  border-radius: 50%; background: rgba(201,161,74,.35); filter: blur(60px);
}
.cta p { color: rgba(255,255,255,.8); margin-top: 12px; max-width: 480px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--gradient-primary); color: #fff;
  padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .25;
  background-image: radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero h1 { color: #fff; margin-top: 14px; }
.page-hero p { margin: 18px auto 0; max-width: 640px; color: rgba(255,255,255,.78); }

/* Team */
.team-card { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.team-card .role { color: var(--gold-500); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.team-card p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-list li:last-child { border-bottom: 0; }
.info-list .label { font-weight: 600; color: var(--navy-900); width: 110px; flex: none; }

/* ---------- 8. Utilities & animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp .7s ease both; }

/* ---------- 9. Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .cta { padding: 48px; grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; gap: 56px; }
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .nav { position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; padding: 16px; background: #fff; border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform .3s; }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 16px; border-radius: 12px; }
  .nav-toggle { display: inline-flex; }
  .hero__content { padding: 96px 0; }
}

/* ---------- 10. New components: lang switch, gallery, blog, hero video ---------- */

/* Hero video */
.hero__bg video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Language switch */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 4px; margin-left: 8px; background: #fff;
}
.lang-switch__opt {
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: .04em; transition: background .2s, color .2s;
}
.lang-switch__opt.is-active { background: var(--navy-900); color: #fff; }

/* Activity card as link */
.activity__link { color: inherit; display: block; }
.activity__more {
  display: inline-block; margin-top: 12px;
  font-size: 13px; font-weight: 700; color: var(--navy-700);
  letter-spacing: .04em;
}
.activity__link:hover .activity__more { color: var(--gold-500); }

/* Gallery page grid + tabs */
.gallery-tabs {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff;
  font-weight: 600; font-size: 14px; color: var(--text);
  transition: all .2s;
}
.gallery-tab:hover { border-color: var(--navy-700); }
.gallery-tab.is-active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.g-item {
  margin: 0; border-radius: var(--radius);
  overflow: hidden; background: #000;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.g-item img, .g-item video {
  width: 100%; height: 260px; object-fit: cover; display: block;
}
.g-item figcaption {
  background: rgba(11,31,58,.92); color: #fff;
  font-size: 13px; padding: 10px 14px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } .g-item img, .g-item video { height: auto; } }

/* Blog single */
.blog-single__hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.blog-single__hero-bg { position: absolute; inset: 0; }
.blog-single__hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.blog-single__hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,.30) 0%, rgba(11,31,58,.85) 100%);
}
.blog-single__hero-content { position: relative; padding: 100px 0 56px; max-width: 820px; }
.blog-single__hero-content h1 { color: #fff; margin-top: 14px; }
.blog-single__meta { margin-top: 18px; color: rgba(255,255,255,.78); font-size: 14px; }

.blog-single__body {
  display: grid; grid-template-columns: 2.2fr 1fr; gap: 56px;
  padding: 72px 24px;
}
.blog-single__content p {
  font-size: 17px; line-height: 1.85; color: var(--text);
  margin-bottom: 22px;
}
.blog-single__aside { border-left: 1px solid var(--border); padding-left: 32px; }
.blog-single__aside h3 { margin-bottom: 14px; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-family: var(--font-body); }
.blog-related { margin-bottom: 28px; }
.blog-related li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.blog-related a { font-weight: 600; color: var(--navy-900); }
.blog-related a:hover { color: var(--gold-500); }

@media (max-width: 900px) {
  .blog-single__body { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .blog-single__aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
}

/* Hide deprecated language switch (kept class for backwards compat) */
.lang-switch { display: none !important; }

/* Gallery item — clickable + play icon overlay for videos */
.g-item { cursor: pointer; }
.g-item__playicon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 999px;
  background: rgba(0,0,0,.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; pointer-events: none;
  backdrop-filter: blur(4px);
}

/* Lightbox modal */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8, 12, 24, .92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  max-width: min(1100px, 100%); max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: 100%; max-height: 80vh;
  border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: #000;
}
.lightbox__close,
.lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff;
  border: 0; border-radius: 999px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close {
  top: 20px; right: 20px;
  width: 44px; height: 44px; font-size: 28px; line-height: 1;
}
.lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; font-size: 36px; line-height: 1;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__caption {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 15px; font-weight: 500;
  background: rgba(0,0,0,.45); padding: 8px 18px; border-radius: 999px;
  max-width: 90%; text-align: center;
}
.lightbox__counter {
  position: absolute; top: 24px; left: 24px;
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .05em;
  background: rgba(0,0,0,.45); padding: 6px 14px; border-radius: 999px;
}
@media (max-width: 640px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 28px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .g-item__playicon { width: 52px; height: 52px; font-size: 20px; }
}

/* reCAPTCHA v2 checkbox styling */
.g-recaptcha { margin-bottom: 4px; }
