@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Telugu:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #0D0B08;
    --bg-elevated: #17130E;
    --bg-card: rgba(255,255,255,0.035);
    --border-soft: rgba(212,160,23,0.16);
    --gold: #D4A017;
    --gold-light: #F2C94C;
    --amber: #FF9F45;
    --maroon: #7A0C1E;
    --text: #F5EFE6;
    --text-muted: #D2C7B4;
    --text-dim: #AFA189;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 { font-family: 'Poppins', 'Noto Sans Telugu', sans-serif; font-weight: 700; }
.section-header h2, .hero h1 { text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.section-header p, .hero-subtitle { text-shadow: 0 1px 8px rgba(0,0,0,0.4); }

/* -------------------- Header -------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(13,11,8,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}
.logo .emoji { font-size: 24px; }
.logo .logo-img { height: 32px; width: auto; max-width: 120px; object-fit: contain; border-radius: 8px; }
.logo .brand-en { color: var(--gold-light); font-weight: 800; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }

.lang-toggle {
    font-size: 13px !important;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    white-space: nowrap;
}
.lang-toggle .lang-active { color: var(--gold-light); }
.lang-toggle span:not(.lang-active) { color: var(--text-dim); }

.nav-cta {
    background: linear-gradient(135deg, var(--gold-light), var(--amber));
    color: #1A1206 !important;
    font-weight: 700 !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 20px;
    border-top: 1px solid var(--border-soft);
    background: rgba(13,11,8,0.97);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 820px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}

/* -------------------- Hero -------------------- */
.hero {
    position: relative;
    padding: 90px 0 10px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(212,160,23,0.16) 0%, rgba(122,12,30,0.08) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--gold-light);
    background: rgba(212,160,23,0.1);
    border: 1px solid var(--border-soft);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(38px, 7vw, 68px);
    line-height: 1.15;
    background: linear-gradient(135deg, #FFFFFF 20%, var(--gold-light) 60%, var(--amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 34px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--amber));
    color: #1A1206;
    box-shadow: 0 8px 30px rgba(212,160,23,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(212,160,23,0.4); }
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-secondary { background: #444; color: #fff; }
.btn-danger { background: var(--maroon); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 13px; border-radius: 20px; }

.hero-badges {
    font-size: 13px;
    color: var(--text-dim);
}

/* Today's widget card */
.today-widget {
    max-width: 560px;
    margin: 50px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 28px 30px;
    text-align: left;
    backdrop-filter: blur(6px);
}
.today-widget .greeting {
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 14px;
}
.today-widget h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}
.today-widget p {
    color: var(--text-muted);
    font-size: 15px;
}

/* -------------------- Sections -------------------- */
.section { padding: 55px 0; position: relative; }
.hero + section { padding-top: 15px; }
.section-alt { background: rgba(0,0,0,0.38); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
    font-weight: 600;
}
.section-header h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 14px;
    color: var(--text);
}
.section-header p { color: var(--text-muted); font-size: 15.5px; }

/* Grid of cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.reveal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 30px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.reveal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,0.45);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.feature-icon { font-size: 34px; margin-bottom: 18px; display: block; }
.icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.icon-badge .emoji-icon { font-size: 26px; line-height: 1; }
.icon-badge .icon-badge-img { width: 30px; height: 30px; object-fit: contain; border-radius: 6px; }
.feature-card h3 { font-size: 18px; color: var(--text); margin-bottom: 4px; }
.feature-card .subtitle-en { font-size: 12.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; }

/* Festival cards */
.festival-card { text-align: center; }
.festival-card .icon-badge { margin-left: auto; margin-right: auto; }
.festival-card h3 { font-size: 17px; margin-bottom: 2px; }
.festival-card .fest-en { font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }
.festival-card .fest-date {
    display: inline-block;
    background: rgba(212,160,23,0.12);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
}
.festival-card .fest-more {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-dim);
    transition: color 0.2s;
}
a.reveal-card { cursor: pointer; }
a.reveal-card:hover .fest-more { color: var(--gold-light); }

/* Trust cards */
.trust-card { display: flex; gap: 18px; align-items: flex-start; text-align: left; }
.trust-card .icon-badge { margin-bottom: 0; }
.trust-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.trust-card p { color: var(--text-muted); font-size: 14px; }

/* Testimonials */
.testimonial-card { }
.stars { color: var(--gold-light); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { color: var(--text); font-size: 15px; margin-bottom: 18px; font-style: italic; }
.testimonial-author { color: var(--text-dim); font-size: 13.5px; }

/* Post/Video cards */
.content-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.content-card .thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--maroon), var(--gold));
}
.content-card .body { padding: 22px 24px; }
.card-category {
    display: inline-block;
    background: rgba(212,160,23,0.14);
    color: var(--gold-light);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.content-card h3 { font-size: 17px; color: var(--text); margin-bottom: 8px; }
.content-card p.excerpt { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.content-card .meta { font-size: 12px; color: var(--text-dim); }

.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.video-embed iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,160,23,0.12), transparent 65%);
    pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 14px; }
.cta-section p { color: var(--text-muted); margin-bottom: 34px; }

/* Single page (post/video/page) */
.single-page {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}
.single-page h1 { font-size: clamp(24px, 4vw, 32px); color: var(--text); margin-bottom: 12px; }
.single-page .meta { color: var(--text-dim); font-size: 13.5px; margin-bottom: 22px; }
.single-page .content { font-size: 16.5px; color: var(--text-muted); white-space: pre-line; }
.single-page img { border-radius: 14px; margin-bottom: 24px; }

.empty-state { text-align: center; color: var(--text-dim); padding: 60px 0; }

/* Footer */
.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-soft);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 320px; }
.footer-col h4 { font-size: 14px; color: var(--text); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
}

@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .trust-card { flex-direction: column; }
}

/* -------------------- Panchangam widget -------------------- */
.panchangam-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 30px 32px;
    backdrop-filter: blur(6px);
}
.panchangam-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.panchangam-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.panchangam-title { font-size: 19px; font-weight: 700; color: var(--text); }
.panchangam-date { color: var(--text-dim); font-weight: 500; font-size: 15px; }
.panchangam-subtitle { color: var(--gold-light); font-size: 13.5px; margin-top: 4px; }
.panchangam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}
.panchangam-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 14px 16px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.panchangam-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212,160,23,0.35);
    background: rgba(255,255,255,0.05);
}
.panchangam-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(212,160,23,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.panchangam-label { font-size: 11.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.panchangam-value { font-size: 14.5px; color: var(--text); font-weight: 600; line-height: 1.3; }

/* Scroll reveal animation */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* -------------------- Sitewide animated background scene -------------------- */
.temple-bg-scene {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--bg);
    pointer-events: none;
}

/* Darkening scrim: guarantees text stays readable no matter which accent
   color is chosen, by keeping the overall scene reliably dark */
.temple-bg-scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

/* Base radial glow, warm like temple lamps — kept very subtle so the page stays dark */
.temple-bg-scene .bg-glow {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1300px;
    height: 1300px;
    background: radial-gradient(circle, rgba(212,160,23,0.045) 0%, rgba(122,12,30,0.03) 40%, transparent 70%);
}

/* Glowing sunrise behind the temple towers — slow breathing pulse */
.temple-bg-scene .sunrise-glow {
    position: absolute;
    bottom: 6%;
    left: 50%;
    width: 700px;
    height: 700px;
    margin-left: -350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,159,69,0.35) 0%, rgba(212,160,23,0.18) 35%, transparent 70%);
    animation: sunrise-breathe 10s ease-in-out infinite;
}

@keyframes sunrise-breathe {
    0%, 100% { opacity: 0.6; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-14px) scale(1.06); }
}

/* Radiating sun rays behind the temple — slow sweep */
.temple-bg-scene .sun-rays {
    position: absolute;
    bottom: -10%;
    left: 50%;
    width: 1400px;
    height: 1400px;
    margin-left: -700px;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, rgba(255,183,71,0.22) 0deg 5deg, transparent 5deg 16deg);
    animation: rays-sweep 140s linear infinite;
    mix-blend-mode: screen;
}

@keyframes rays-sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Rotating mandala / chakra motif */
.temple-bg-scene .mandala {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1100px;
    height: 1100px;
    margin: -550px 0 0 -550px;
    opacity: 0.045;
    animation: spin-slow 160s linear infinite;
}

/* Temple gopuram skyline silhouette anchored to bottom */
.temple-bg-scene .temple-skyline {
    position: absolute;
    bottom: -2%;
    left: 0;
    width: 100%;
    min-height: 340px;
    opacity: 0.5;
    mix-blend-mode: normal;
}

/* Floating diya / om particles */
.temple-bg-scene .particle {
    position: absolute;
    bottom: -60px;
    font-size: 22px;
    color: var(--gold-light);
    opacity: 0;
    animation: float-up 22s linear infinite;
}
.temple-bg-scene .particle:nth-child(1) { left: 6%; animation-delay: 0s; font-size: 18px; }
.temple-bg-scene .particle:nth-child(2) { left: 18%; animation-delay: 3s; font-size: 24px; }
.temple-bg-scene .particle:nth-child(3) { left: 32%; animation-delay: 7s; font-size: 16px; }
.temple-bg-scene .particle:nth-child(4) { left: 48%; animation-delay: 1s; font-size: 20px; }
.temple-bg-scene .particle:nth-child(5) { left: 62%; animation-delay: 10s; font-size: 26px; }
.temple-bg-scene .particle:nth-child(6) { left: 74%; animation-delay: 5s; font-size: 18px; }
.temple-bg-scene .particle:nth-child(7) { left: 85%; animation-delay: 13s; font-size: 22px; }
.temple-bg-scene .particle:nth-child(8) { left: 93%; animation-delay: 8s; font-size: 16px; }

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-up {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    8%   { opacity: 0.35; }
    50%  { transform: translateY(-55vh) translateX(20px); opacity: 0.22; }
    92%  { opacity: 0; }
    100% { transform: translateY(-100vh) translateX(-10px); opacity: 0; }
}

/* Custom image background mode */
.temple-bg-scene.bg-image-mode {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.temple-bg-scene.bg-image-mode .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,11,8,0.75) 0%, rgba(13,11,8,0.55) 40%, rgba(13,11,8,0.85) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .temple-bg-scene .mandala,
    .temple-bg-scene .particle {
        animation: none;
        opacity: 0.04;
    }
}

/* Dedicated Gallery page — photo grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212,160,23,0.45);
    box-shadow: 0 14px 34px rgba(0,0,0,0.4);
}
.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.gallery-item .gallery-caption {
    padding: 14px 16px;
}
.gallery-item .gallery-caption h3 { font-size: 15px; color: var(--text); margin-bottom: 2px; }
.gallery-item .gallery-caption .caption-en { font-size: 12px; color: var(--text-dim); }
.gallery-expand-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gallery-item:hover .gallery-expand-hint { opacity: 1; }

/* Lightbox modal for expanding gallery photos */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5,4,2,0.94);
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-content {
    max-width: 88vw;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content img {
    max-width: 88vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-info { text-align: center; margin-top: 18px; }
.lightbox-info h3 { font-size: 20px; color: var(--text); margin-bottom: 6px; }
.lightbox-info .caption-en { font-size: 14px; color: var(--text-dim); }
.lightbox-description { font-size: 14.5px; color: var(--text-muted); max-width: 560px; margin: 12px auto 0; line-height: 1.6; }
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(212,160,23,0.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 640px) {
    .lightbox-nav { width: 38px; height: 38px; font-size: 14px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 12px; right: 14px; font-size: 30px; }
}
