/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Montserrat', sans-serif;
    color: #0A0A0A;
    background: #FFFAFA;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== COLORS (CSS custom properties) ===== */
:root {
    --dark-blue: #093577;
    --light-blue: #A1C9FD;
    --orange: #FA6203;
    --white: #FFFAFA;
    --black: #0A0A0A;
    --light-bg: #F0F5FC;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.15;
    margin-bottom: 24px;
}
.section-desc {
    font-size: 1.05rem;
    color: #444;
    max-width: 640px;
    line-height: 1.7;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover { background: #e05800; transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}
.btn-outline:hover { background: var(--dark-blue); color: #fff; }

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(9, 53, 119, 0.08);
    transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(9, 53, 119, 0.1); }
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > a,
.nav-item-dropdown > .nav-dropdown-toggle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-blue);
    position: relative;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    white-space: nowrap;
}
.nav-links > a::after,
.nav-item-dropdown > .nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}
.nav-links > a:hover::after,
.nav-item-dropdown:hover > .nav-dropdown-toggle::after { width: 100%; }
.nav-cta {
    background: var(--dark-blue);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #0b4499; }

/* Desktop dropdown menu */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown .nav-dropdown-toggle svg,
.nav-item-dropdown .nav-dropdown-toggle i { transition: transform 0.2s; }
.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown:hover .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(9, 53, 119, 0.08);
    box-shadow: 0 16px 40px rgba(9, 53, 119, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 50;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--dark-blue);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover { background: var(--light-bg); color: var(--orange); }
.nav-dropdown-menu a::after { display: none !important; }

/* Align CTA dropdown to the right edge so it doesn't overflow */
.nav-item-dropdown:last-child .nav-dropdown-menu { left: auto; right: 0; }

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--dark-blue);
    transition: all 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero {
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}
.hero-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.05); }
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 53, 119, 0.85) 0%, rgba(9, 53, 119, 0.5) 100%);
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 560px;
}
.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.hero-buttons .btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: var(--dark-blue);
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Slider controls */
.hero-arrows {
    position: absolute;
    bottom: 32px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-arrow {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.hero-dot.active {
    background: var(--orange);
    width: 32px;
    border-radius: 6px;
}
.hero-card {
    background: var(--dark-blue);
    border-radius: 24px;
    padding: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 200px; height: 200px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.9;
}
.hero-card::after {
    content: '';
    position: absolute;
    top: 20px; right: 60px;
    width: 120px; height: 120px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.7;
}
.hero-card .eyes {
    position: absolute;
    top: 24px; left: 28px;
    display: flex; gap: 10px;
    z-index: 1;
}
.eye {
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 50%;
    position: relative;
}
.eye::after {
    content: '';
    position: absolute;
    width: 16px; height: 16px;
    background: #0A0A0A;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-30%, -30%);
}
.hero-card h3 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-card p {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    margin-top: 8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.hero-stat-row {
    display: flex; gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}
.hero-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
}
.hero-stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--orange);
}
.hero-stat span { font-size: 0.8rem; opacity: 0.8; }

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text .section-desc { margin-bottom: 28px; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: 10px;
    color: var(--dark-blue);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.about-feature:hover {
    background: #fff;
    border-color: rgba(9, 53, 119, 0.12);
    box-shadow: 0 8px 22px rgba(9, 53, 119, 0.08);
    transform: translateY(-2px);
}
.about-feature-icon {
    width: 40px; height: 40px;
    background: var(--dark-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.2rem;
    transition: background 0.2s;
}
.about-feature:hover .about-feature-icon { background: var(--orange); }
.about-feature span { font-size: 0.9rem; font-weight: 600; flex: 1; }
.about-feature-arrow {
    color: var(--orange);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.about-feature:hover .about-feature-arrow {
    opacity: 1;
    transform: translateX(0);
}
.about-image-block {
    position: relative;
}
.about-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--light-blue);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-main .placeholder-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    opacity: 0.5;
}
.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(250, 98, 3, 0.3);
}
.about-badge strong { font-size: 2.2rem; line-height: 1; }
.about-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== CATEGORIES ===== */
.categories {
    padding: 100px 0;
}
.categories-header {
    text-align: center;
    margin-bottom: 56px;
}
.categories-header .section-desc { margin: 0 auto; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.categories-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: #666;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed rgba(9, 53, 119, 0.15);
}
.category-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    display: block;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(9, 53, 119, 0.1);
}
.category-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}
.category-card:hover .category-icon { transform: scale(1.08); }
.category-icon svg { width: 28px; height: 28px; }
.category-icon.ci-art { background: rgba(161, 201, 253, 0.25); color: var(--dark-blue); }
.category-icon.ci-dance { background: rgba(250, 98, 3, 0.12); color: var(--orange); }
.category-icon.ci-music { background: rgba(9, 53, 119, 0.1); color: var(--dark-blue); }
.category-icon.ci-sport { background: rgba(250, 98, 3, 0.12); color: var(--orange); }
.category-icon.ci-theatre { background: rgba(161, 201, 253, 0.25); color: var(--dark-blue); }
.category-icon.ci-edu { background: rgba(9, 53, 119, 0.1); color: var(--dark-blue); }
.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.category-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.category-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.category-count svg { width: 14px; height: 14px; }

/* ===== ACTIVITIES ===== */
.activities {
    padding: 100px 0;
    background: var(--light-bg);
}
.activities-header {
    text-align: center;
    margin-bottom: 60px;
}
.activities-header .section-desc { margin: 0 auto; }
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.activity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(9, 53, 119, 0.12);
}
.activity-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.activity-card:hover .activity-img img { transform: scale(1.05); }
.activity-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(9, 53, 119, 0.6), transparent);
    pointer-events: none;
}
.activity-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: var(--dark-blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}
.activity-age {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}
.activity-body {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.activity-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.3;
}
.activity-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.activity-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
}
.activity-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--light-blue);
    flex-shrink: 0;
}
.activity-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.activity-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(9, 53, 119, 0.06);
    margin-top: auto;
}
.activity-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
}
.activity-price span {
    font-size: 0.78rem;
    font-weight: 400;
    color: #999;
}
.activity-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
    transition: gap 0.3s;
}
.activity-link:hover { gap: 10px; }
.activity-link svg { width: 16px; height: 16px; }

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
}
.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}
.gallery-header .section-desc { margin: 0 auto; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}
.gallery-item {
    /* Reset native <button> defaults so the image fills edge-to-edge with
       no light-blue padding/border leaking through. */
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:focus { outline: none; }
.gallery-item:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.3s;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}

/* Expand-arrows overlay — hidden until hover */
.gallery-item-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus-visible .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GALLERY LIGHTBOX (full-screen overlay) ===== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    backdrop-filter: blur(8px);
    animation: gallery-fade-in 0.2s ease-out;
}
.gallery-lightbox[hidden] { display: none; }
@keyframes gallery-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.gallery-lightbox-stage {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.gallery-lightbox-stage img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    user-select: none;
}
.gallery-lightbox-caption {
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    max-width: 720px;
}
.gallery-lightbox-counter {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.06);
}
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
}
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

@media (max-width: 640px) {
    .gallery-lightbox { padding: 50px 12px; }
    .gallery-lightbox-prev { left: 10px; width: 44px; height: 44px; }
    .gallery-lightbox-next { right: 10px; width: 44px; height: 44px; }
    .gallery-lightbox-close { top: 12px; right: 12px; }
    .gallery-lightbox-stage img { max-height: calc(100vh - 140px); }
}

/* ===== EVENTS ===== */
.events {
    padding: 100px 0;
    background: var(--dark-blue);
    color: #fff;
}
.events .section-label { color: var(--light-blue); }
.events .section-title { color: #fff; }
.events .section-desc { color: rgba(255,255,255,0.7); }
.events-header {
    margin-bottom: 48px;
}
.events-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}
/* Calendar */
.events-calendar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px;
}
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cal-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.cal-nav {
    display: flex; gap: 6px;
}
.cal-nav button {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cal-nav button:hover { background: rgba(255,255,255,0.1); }
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}
.cal-weekdays span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 6px 0;
}
.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}
.cal-day {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: default;
    transition: all 0.2s;
    color: rgba(255,255,255,0.7);
    position: relative;
}
.cal-day.empty { visibility: hidden; }
.cal-day.today {
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 700;
}
.cal-day.has-event {
    cursor: pointer;
    color: #fff;
    font-weight: 700;
}
.cal-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
}
.cal-day.has-event:hover {
    background: var(--orange);
}
.cal-day.has-event:hover::after { background: #fff; }
/* Event list */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 560px;
    overflow-y: auto;
    padding-right: 6px;
}
.events-list::-webkit-scrollbar { width: 6px; }
.events-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 3px; }
.events-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }

.events .event-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 18px;
    transition: background 0.3s, transform 0.3s;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    align-items: stretch;
    color: #fff;
}
.events .event-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Image / date overlay on the left of the card */
.events .event-card-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    aspect-ratio: 1 / 1;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}
.events .event-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.events .event-card-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
}
.events .event-card-media .event-date-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--orange);
    border-radius: 8px;
    padding: 4px 10px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.events .event-card-media .event-date-overlay .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.events .event-card-media .event-date-overlay .month {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.95;
    margin-top: 2px;
}

.events .event-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.events .event-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
    line-height: 1.3;
}
.events .event-info .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
.events .event-info .event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.events .event-info .event-meta-item i,
.events .event-info .event-meta-item svg { color: var(--orange); }
.events .event-info p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
    margin: 0 0 12px;
    flex: 1;
}
.events .event-info .event-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-decoration: none;
    margin-top: auto;
}
.events .event-info .event-readmore:hover {
    background: #e05800;
    transform: translateX(2px);
}

/* Empty-month fallback card (no date/image) */
.events .event-card.is-empty {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
}
.events .event-card.is-empty .event-info h3 { color: #fff; }
.events .event-card.is-empty .event-info p { color: rgba(255,255,255,0.65); }

@media (max-width: 540px) {
    .events .event-card {
        grid-template-columns: 1fr;
    }
    .events .event-card-media {
        width: 100%;
        height: 180px;
        aspect-ratio: auto;
    }
}

/* ===== CAMPS ===== */
.camps {
    padding: 100px 0;
    background: var(--light-bg);
}
.camps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.camps-visual {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    border-radius: 24px;
    padding: 48px;
    color: #fff;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.camps-visual::before {
    content: '';
    position: absolute;
    top: 20px; right: 20px;
    width: 160px; height: 160px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.4;
}
.camps-visual h3 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.camps-visual p {
    font-size: 1rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    margin-top: 8px;
}
.camps-info .section-desc { margin-bottom: 28px; }
.camp-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.camp-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}
.camp-highlight-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.camp-highlight h4 { font-size: 0.95rem; font-weight: 600; color: var(--dark-blue); }
.camp-highlight p { font-size: 0.85rem; color: #666; margin-top: 4px; }

/* ===== TEAM ===== */
.team {
    padding: 100px 0;
}
.team-header {
    text-align: center;
    margin-bottom: 60px;
}
.team-header .section-desc { margin: 0 auto; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.team-card { text-align: center; }
.team-avatar {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: var(--light-blue);
    margin: 0 auto 16px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(9, 53, 119, 0.1);
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.team-card:hover .team-avatar img { transform: scale(1.08); }
.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-blue);
}
.team-card p {
    font-size: 0.85rem;
    color: #888;
    margin-top: 4px;
}

/* ===== CONTACTS ===== */
.contacts {
    padding: 100px 0;
    background: var(--light-bg);
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px; height: 48px;
    background: var(--dark-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-item p { font-size: 1rem; color: var(--dark-blue); font-weight: 500; }
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    background: var(--light-blue);
    min-height: 360px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-blue);
    color: #fff;
    padding: 60px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; max-width: 320px; }
.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--light-blue);
}
.footer-links a {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 1; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.8rem;
    opacity: 0.5;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* ===== MOBILE FULL-SCREEN MENU ===== */
.mobile-menu {
    display: none;
}
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--dark-blue);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        overflow-y: auto;
    }
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        padding: 100px 32px 48px;
        gap: 36px;
    }
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .mobile-menu-link {
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: color 0.3s, padding-left 0.3s;
        opacity: 0;
        transform: translateX(-20px);
    }
    .mobile-menu.active .mobile-menu-link {
        opacity: 1;
        transform: translateX(0);
    }
    .mobile-menu.active .mobile-menu-link:nth-child(1) { transition: opacity 0.4s 0.1s, transform 0.4s 0.1s, color 0.3s, padding-left 0.3s; }
    .mobile-menu.active .mobile-menu-link:nth-child(2) { transition: opacity 0.4s 0.15s, transform 0.4s 0.15s, color 0.3s, padding-left 0.3s; }
    .mobile-menu.active .mobile-menu-link:nth-child(3) { transition: opacity 0.4s 0.2s, transform 0.4s 0.2s, color 0.3s, padding-left 0.3s; }
    .mobile-menu.active .mobile-menu-link:nth-child(4) { transition: opacity 0.4s 0.25s, transform 0.4s 0.25s, color 0.3s, padding-left 0.3s; }
    .mobile-menu.active .mobile-menu-link:nth-child(5) { transition: opacity 0.4s 0.3s, transform 0.4s 0.3s, color 0.3s, padding-left 0.3s; }
    .mobile-menu.active .mobile-menu-link:nth-child(6) { transition: opacity 0.4s 0.35s, transform 0.4s 0.35s, color 0.3s, padding-left 0.3s; }
    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        color: var(--orange);
        padding-left: 12px;
    }
    /* Mobile collapsible groups (<details>) */
    .mobile-menu-group {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu-group > summary {
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        padding: 12px 0;
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: color 0.3s;
    }
    .mobile-menu-group > summary::-webkit-details-marker { display: none; }
    .mobile-menu-group > summary:hover { color: var(--orange); }
    .mobile-menu-group > summary i,
    .mobile-menu-group > summary svg { transition: transform 0.25s; }
    .mobile-menu-group[open] > summary i,
    .mobile-menu-group[open] > summary svg { transform: rotate(180deg); }
    .mobile-menu-group[open] > summary { color: var(--orange); }
    .mobile-menu-sublink {
        display: block;
        font-size: 1.05rem;
        font-weight: 500;
        color: rgba(255,255,255,0.85);
        padding: 8px 0 8px 18px;
        transition: color 0.2s, padding-left 0.2s;
    }
    .mobile-menu-sublink:hover { color: var(--orange); padding-left: 24px; }
    .mobile-menu-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-menu-btn {
        text-align: center;
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }
    .mobile-menu-btn.btn-outline {
        border-color: rgba(255,255,255,0.3);
        color: #fff;
    }
    .mobile-menu-btn.btn-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
        color: #fff;
    }
    .mobile-menu-contact {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.88rem;
        color: rgba(255,255,255,0.6);
    }
    .mobile-menu-contact-item svg { color: var(--light-blue); flex-shrink: 0; }
    .mobile-menu-contact-item a {
        color: rgba(255,255,255,0.6);
        transition: color 0.3s;
    }
    .mobile-menu-contact-item a:hover { color: #fff; }
    .mobile-menu-social {
        display: flex;
        gap: 16px;
    }
    .mobile-menu-social a {
        width: 44px; height: 44px;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
        transition: all 0.3s;
    }
    .mobile-menu-social a:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }

    /* Hamburger animation */
    .mobile-toggle { z-index: 1002; position: relative; }
    header.menu-open { z-index: 1001; }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .mobile-toggle.active span { background: #fff; }

    /* Header when menu open */
    header.menu-open {
        background: var(--dark-blue);
        border-bottom-color: rgba(255,255,255,0.08);
    }
    header.menu-open .nav-logo img { filter: brightness(0) invert(1); }
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (max 968px) --- */
@media (max-width: 968px) {
    .container { padding: 0 24px; }
    .hero-slide-content { grid-template-columns: 1fr; gap: 32px; padding: 80px 24px 80px; }
    .hero-visual { order: -1; }
    .hero-card { max-width: 100%; aspect-ratio: auto; padding: 36px; }
    .hero-card h3 { font-size: 2.4rem; }
    .hero-stat-row { gap: 16px; }
    .hero-stat { padding: 14px 20px; flex: 1; min-width: 0; }
    .hero-arrows { right: 24px; bottom: 24px; }
    .hero-dots { left: 24px; bottom: 24px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .events-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-block { order: -1; }
    .about-badge { bottom: -16px; right: 16px; width: 100px; height: 100px; }
    .about-badge strong { font-size: 1.8rem; }
    .camps-grid { grid-template-columns: 1fr; gap: 40px; }
    .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Nav */
    .nav { height: 64px; }
    .nav-logo img { height: 42px; }
    .nav-links { display: none !important; }
    .mobile-toggle { display: flex; }

    /* Categories */
    .categories { padding: 64px 0; }
    .categories-header { margin-bottom: 36px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .category-card { padding: 24px 20px; }
    .category-icon { width: 52px; height: 52px; margin-bottom: 16px; border-radius: 12px; }
    .category-icon svg { width: 24px; height: 24px; }
    .category-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
    .category-card p { font-size: 0.82rem; margin-bottom: 14px; }

    /* Hero */
    .hero { padding-top: 64px; }
    .hero-slide-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 60px 16px 72px;
        min-height: auto;
    }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-text p { font-size: 0.95rem; margin-bottom: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; width: 100%; }
    .hero-card { padding: 55px 20px 28px; border-radius: 18px; }
    .hero-arrows { right: 16px; bottom: 16px; }
    .hero-arrow { width: 40px; height: 40px; }
    .hero-dots { left: 16px; bottom: 20px; }
    .events-calendar { padding: 20px; }
    .hero-card .eyes { top: 20px; left: 20px; gap: 8px; }
    .eye { width: 36px; height: 36px; }
    .eye::after { width: 14px; height: 14px; }
    .hero-card::before { width: 140px; height: 140px; top: -20px; right: -20px; }
    .hero-card::after { width: 80px; height: 80px; top: 15px; right: 40px; }
    .hero-card h3 { font-size: 2.4rem; }
    .hero-card > p { font-size: 0.9rem; }
    .hero-stat-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 28px;
    }
    .hero-stat {
        padding: 12px 8px;
        border-radius: 10px;
    }
    .hero-stat strong { font-size: 1.25rem; }
    .hero-stat span { font-size: 0.7rem; }

    /* Sections general */
    .about, .activities, .gallery, .events, .camps, .team, .contacts {
        padding: 64px 0;
    }
    .section-title { font-size: 1.5rem; margin-bottom: 14px; }
    .section-desc { font-size: 0.95rem; }
    .section-label { font-size: 0.7rem; margin-bottom: 8px; }

    /* About */
    .about-features { grid-template-columns: 1fr 1fr; gap: 10px; }
    .about-feature { padding: 10px 12px; }
    .about-feature-icon { width: 34px; height: 34px; }
    .about-feature span { font-size: 0.82rem; }

    /* Activities */
    .activities-grid { grid-template-columns: 1fr; gap: 20px; }
    .activity-img { height: 180px; }
    .activity-body { padding: 20px 18px 18px; }
    .activity-body h3 { font-size: 1.05rem; margin-bottom: 12px; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px 160px 160px;
        gap: 10px;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; }

    /* Events */
    .events-list { gap: 14px; }
    .event-card { padding: 20px; gap: 16px; }
    .event-date-block { min-width: 60px; padding: 10px 12px; }
    .event-date-block .day { font-size: 1.3rem; }

    /* Camps */
    .camps-visual { min-height: 260px; padding: 32px 24px; border-radius: 18px; }
    .camps-visual h3 { font-size: 1.5rem; }
    .camp-highlight { padding: 14px 16px; }

    /* Team */
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-avatar { width: 120px; height: 120px; }
    .team-card h3 { font-size: 0.95rem; }

    /* Contacts */
    .contact-map { min-height: 280px; border-radius: 14px; }
    .contact-map iframe { min-height: 280px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: span 1; }
    footer { padding: 48px 0 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* --- Small mobile (max 420px) --- */
@media (max-width: 420px) {
    .container { padding: 0 14px; }
    .hero-slide-content { padding: 48px 14px 68px; }
    .hero-text h1 { font-size: 1.55rem; }
    .hero-card { padding: 24px 16px; }
    .hero-card h3 { font-size: 2rem; }
    .hero-stat-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stat { padding: 10px 6px; }
    .hero-stat strong { font-size: 1.1rem; }
    .hero-stat span { font-size: 0.65rem; }

    .about-features { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }
    .gallery-item { height: 200px; }
    .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }

    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .team-avatar { width: 100px; height: 100px; }

    .section-title { font-size: 1.35rem; }
    .activity-meta { gap: 12px; }
    .activity-footer { flex-direction: column; gap: 12px; align-items: flex-start; }

    .camps-visual { min-height: 220px; padding: 24px 18px; }
    .camps-visual::before { width: 100px; height: 100px; }
}

/* ===== INNER PAGE HERO ===== */
/* Used by listing pages: /veiklos, /renginiai, /straipsniai, etc. */
.page-hero {
    padding: calc(72px + 48px) 0 48px;
    background: var(--light-bg);
    border-bottom: 1px solid rgba(9, 53, 119, 0.08);
}
.page-hero .container > * + * { margin-top: 12px; }
.page-hero .section-label { margin: 0 0 14px; }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}
.page-hero p {
    font-size: 1.05rem;
    color: #444;
    max-width: 640px;
    margin: 16px 0 0;
    line-height: 1.6;
}

/* ===== ACTIVITIES LISTING: filters, count, pagination ===== */
.activities-filters {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    margin-bottom: 24px;
    border: 1px solid rgba(9, 53, 119, 0.06);
}
.activities-filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: end;
}
.activities-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.activities-filter-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.activities-filter-group select {
    padding: 11px 14px;
    border: 1px solid rgba(9, 53, 119, 0.15);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--black);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.activities-filter-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(250, 98, 3, 0.12);
}
.activities-filter-submit {
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}
.activities-filter-submit:hover { background: #e05800; transform: translateY(-1px); }

.activities-count {
    margin-bottom: 24px;
    color: #666;
    font-size: 0.95rem;
}
.activities-count strong { color: var(--dark-blue); font-size: 1.05rem; }

.activities-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #666;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(9, 53, 119, 0.06);
}
.activities-empty i { font-size: 2.5rem; color: var(--dark-blue); opacity: 0.25; margin-bottom: 16px; }
.activities-empty h3 { color: var(--dark-blue); margin: 0 0 8px; font-size: 1.3rem; }
.activities-empty p { margin: 0; }

/* Pagination — styles the default Laravel paginator output */
.activities-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.activities-pagination nav { display: inline-flex; flex-wrap: wrap; gap: 4px; }
.activities-pagination ul, .activities-pagination ol { display: inline-flex; flex-wrap: wrap; gap: 4px; list-style: none; padding: 0; margin: 0; }
.activities-pagination a,
.activities-pagination span,
.activities-pagination button {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    background: #fff;
    border: 1px solid rgba(9, 53, 119, 0.1);
    transition: all 0.2s;
}
.activities-pagination a:hover {
    background: var(--dark-blue);
    color: #fff;
    border-color: var(--dark-blue);
}
.activities-pagination [aria-current="page"] span,
.activities-pagination .active span,
.activities-pagination .active a {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.activities-pagination .disabled span,
.activities-pagination [aria-disabled="true"] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 900px) {
    .activities-filters-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-filter-submit { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 520px) {
    .activities-filters-grid { grid-template-columns: 1fr; }
}

/* ===== ACTIVITY CARD IMAGE FALLBACK (used by themed activity-card partial) ===== */
.activity-img .activity-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-bg) 100%);
    color: var(--dark-blue);
    opacity: 0.4;
}

/* Availability bar overlaying card footer — used when max_participants is set */
.activity-availability {
    margin: 0 0 12px;
    font-size: 0.75rem;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.activity-availability-bar {
    height: 4px;
    background: rgba(9, 53, 119, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}
.activity-availability-bar-fill {
    height: 100%;
    background: var(--orange);
    transition: width 0.3s;
}

/* NVŠ / featured badges inside activity image */
.activity-badge-nvs,
.activity-badge-new {
    position: absolute;
    top: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.activity-badge-nvs { left: 12px; background: var(--dark-blue); color: #fff; }
.activity-badge-new { right: 12px; background: var(--orange); color: #fff; }

/* ===== EVENTS LISTING ===== */

/* Reuse activities-filter-group styles for text inputs too. */
.activities-filter-group input[type="text"],
.activities-filter-group input[type="search"] {
    padding: 11px 14px;
    border: 1px solid rgba(9, 53, 119, 0.15);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--black);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.activities-filter-group input[type="text"]:focus,
.activities-filter-group input[type="search"]:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(250, 98, 3, 0.12);
}

/* Events filter row has 2 inputs (type + search) instead of 4 — wider search column. */
.activities-filters-grid--events {
    grid-template-columns: minmax(180px, 1fr) 2fr auto;
}
@media (max-width: 720px) {
    .activities-filters-grid--events { grid-template-columns: 1fr; }
    .activities-filters-grid--events .activities-filter-submit { justify-content: center; }
}

/* Date overlay block on event card image — top-left. */
.event-card-date {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    min-width: 56px;
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}
.event-card-date-day {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-blue);
}
.event-card-date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-weight: 700;
    margin-top: 2px;
}

/* When a date overlay is present, push the NVŠ/Pilna badge to keep them from colliding. */
.activity-img .event-card-date + .activity-badge-nvs { left: 80px; }

/* ===========================================================
   STOCK-PAGE CLASS VOCABULARY
   These rules style the class names used by stock public
   blade templates so they pick up the Verdenė aesthetic
   without per-page overrides.
   =========================================================== */

/* ----- Base safety nets (in case stock SCSS isn't loaded) ----- */
section { display: block; }
h1, h2, h3, h4, h5, h6 { color: var(--dark-blue); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }
p { line-height: 1.7; }
strong { color: var(--dark-blue); font-weight: 700; }

/* ----- Generic page hero variants (every section called *-hero) ----- */
.activities-hero,
.contact-hero,
.articles-hero,
.article-hero,
.article-category-hero,
.category-hero,
.event-hero,
.registration-hero,
.camps-hero {
    padding: calc(72px + 56px) 0 56px;
    background: var(--light-bg);
    border-bottom: 1px solid rgba(9, 53, 119, 0.08);
}
.activities-hero .hero-content,
.contact-hero .contact-hero-content,
.articles-hero .hero-content,
.article-hero .hero-content,
.article-category-hero .hero-content,
.category-hero .hero-content,
.event-hero .hero-content,
.registration-hero .hero-content,
.camps-hero .hero-content {
    max-width: 720px;
}
.activities-hero h1,
.contact-hero h1,
.articles-hero h1,
.article-hero h1,
.article-category-hero h1,
.category-hero h1,
.event-hero h1,
.registration-hero h1,
.camps-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-blue);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}
.activities-hero p,
.contact-hero p,
.articles-hero p,
.article-hero p,
.article-category-hero p,
.category-hero p,
.event-hero p,
.registration-hero p,
.camps-hero p {
    font-size: 1.05rem;
    color: #444;
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
}

/* Generic content section wrapper used by FAQ, pages templates */
.content-section {
    padding: 80px 0;
}
.activities-section,
.articles-section,
.contact-main {
    padding: 80px 0;
    background: var(--light-bg);
}

/* ----- Breadcrumbs ----- */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}
.breadcrumbs a {
    color: var(--dark-blue);
    transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs i,
.breadcrumbs svg { font-size: 0.7rem; opacity: 0.5; }
.breadcrumbs span { color: #888; }

/* ----- Hero badges (activity/event detail) ----- */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.badge-category,
.badge-nvs,
.badge-featured,
.badge-success {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-category { background: var(--dark-blue); color: #fff; }
.badge-nvs { background: rgba(250, 98, 3, 0.12); color: var(--orange); }
.badge-featured { background: var(--orange); color: #fff; }
.badge-success { background: #d1fae5; color: #065f46; }

/* ----- Two-column detail grids ----- */
.activity-grid,
.article-layout,
.form-grid,
.contact-grid,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: start;
}
.activity-main,
.article-main,
.form-main,
.contact-form-wrapper,
.detail-main { min-width: 0; }
.activity-sidebar,
.article-sidebar,
.form-sidebar,
.detail-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 980px) {
    .activity-grid,
    .article-layout,
    .form-grid,
    .contact-grid,
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .activity-sidebar,
    .article-sidebar,
    .form-sidebar,
    .detail-sidebar { position: static; }
}

/* ----- Generic card surfaces used on detail pages ----- */
.form-card,
.registration-card,
.contact-card,
.contact-method,
.progress-card,
.help-card,
.info-card,
.faq-wrapper,
.documents-wrapper,
.content-section .container > .article-content,
.contract-content-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
}
.form-card { padding: 0; margin-bottom: 24px; }
.form-card:last-child { margin-bottom: 0; }
.form-card .card-header {
    padding: 22px 28px;
    border-bottom: 1px solid rgba(9, 53, 119, 0.08);
}
.form-card .card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
}
.form-card .card-header h3 i { color: var(--orange); }
.form-card .card-body { padding: 24px 28px 28px; }

.registration-card h3,
.contact-card h3,
.progress-card h4,
.help-card h4,
.info-card h3 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}
.help-card h4 i,
.progress-card h4 i { color: var(--orange); }

/* ----- Activity / event detail hero ----- */
.activity-hero,
.event-hero {
    padding: calc(72px + 56px) 0 56px;
    background: var(--light-bg);
    border-bottom: 1px solid rgba(9, 53, 119, 0.08);
}
.activity-details {
    padding: 60px 0 80px;
    background: var(--white);
}

/* Gallery on activity show */
.activity-gallery {
    margin-bottom: 32px;
}
.gallery-main {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: var(--light-bg);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.gallery-thumbs .thumb {
    width: 90px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
    border: 2px solid transparent;
}
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .thumb.active,
.gallery-thumbs .thumb:hover {
    opacity: 1;
    border-color: var(--orange);
}

.content-section + .content-section { margin-top: 32px; }
.activity-main .content-section,
.article-main .content-section {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    margin-bottom: 24px;
}
.activity-main .content-section h2,
.article-main .content-section h2 {
    margin: 0 0 16px;
    font-size: 1.4rem;
    color: var(--dark-blue);
}

/* Notice */
.notice {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(250, 98, 3, 0.08);
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    color: #663300;
    margin-bottom: 20px;
    line-height: 1.5;
}
.notice i { color: var(--orange); margin-top: 3px; }

/* Schedule grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.schedule-day {
    padding: 16px 18px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid rgba(9, 53, 119, 0.05);
}
.day-name {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}
.day-time,
.day-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #555;
}
.day-time i,
.day-duration i { color: var(--orange); width: 14px; }

/* Teachers grid */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.teacher-card {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 14px;
}
.teacher-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.teacher-info h4 { margin: 0 0 4px; font-size: 1rem; color: var(--dark-blue); }
.teacher-info p { margin: 0; font-size: 0.85rem; color: #555; line-height: 1.5; }

/* Activity sidebar info list */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(9, 53, 119, 0.06);
    font-size: 0.9rem;
}
.info-row:last-child { border-bottom: none; }
.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}
.info-label i { color: var(--orange); width: 16px; }
.info-value { color: var(--dark-blue); font-weight: 600; text-align: right; }
.info-value.price { color: var(--orange); font-size: 1.05rem; }

/* Availability bar */
.availability-box {
    margin: 20px 0;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 12px;
}
.availability-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #555;
}
.availability-header strong { color: var(--dark-blue); font-size: 1rem; }
.availability-bar {
    height: 6px;
    background: rgba(9, 53, 119, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.availability-bar .bar-fill {
    height: 100%;
    background: var(--orange);
    transition: width 0.3s;
}
.availability-full { text-align: center; padding: 8px 0 0; }
.full-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    font-weight: 700;
    font-size: 0.9rem;
}
.waiting-list-info {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Sidebar buttons */
.btn-register,
.btn-waiting,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-register,
.btn-submit { background: var(--orange); color: #fff; }
.btn-register:hover,
.btn-submit:hover { background: #e05800; transform: translateY(-2px); color: #fff; }
.btn-waiting { background: rgba(250, 98, 3, 0.12); color: var(--orange); }
.btn-waiting:hover { background: var(--orange); color: #fff; }
.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    background: rgba(9, 53, 119, 0.06);
    color: #888;
    border: none;
    cursor: not-allowed;
    font-weight: 600;
    font-size: 0.95rem;
}
.btn-back,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 10px;
    background: #fff;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-back:hover,
.btn-secondary:hover { background: var(--dark-blue); color: #fff; }
.btn-directions,
.btn-filter-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-directions:hover,
.btn-filter-apply:hover { background: #e05800; color: #fff; }
.btn-filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    background: transparent;
    color: var(--dark-blue);
    border: 1px solid rgba(9, 53, 119, 0.2);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-filter-reset:hover { border-color: var(--dark-blue); background: var(--light-bg); }

/* Contact card */
.contact-card p { font-size: 0.9rem; color: #555; margin-bottom: 14px; }

/* Contact card variant used on /puslapiai/administracine-informacija
   "Turite klausimų?" block. The chip + heading + value should all be
   centered as a stack — different from the .contact-main horizontal
   row style further up. */
.contact-cards-grid .contact-card,
.contact-card:not(.contact-main .contact-card) {
    text-align: center;
    padding: 32px 24px;
}
.contact-card > .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(250, 98, 3, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}
.contact-card > .contact-icon i,
.contact-card > .contact-icon svg { color: inherit; }
.contact-card h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: var(--dark-blue);
}
.contact-card p { margin: 0; }
.contact-card a { color: var(--dark-blue); font-weight: 600; }
.contact-card a:hover { color: var(--orange); }
.contact-links { display: flex; flex-direction: column; gap: 8px; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 10px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.contact-link:hover { background: var(--orange); color: #fff; }
.contact-link i { color: var(--orange); width: 18px; }
.contact-link:hover i { color: #fff; }

/* ----- Forms ----- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-blue);
}
.form-group .required { color: var(--orange); margin-left: 2px; }
.form-control {
    padding: 11px 14px;
    border: 1px solid rgba(9, 53, 119, 0.15);
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--black);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(250, 98, 3, 0.12);
}
.form-control.is-invalid { border-color: #dc2626; }
.form-hint { font-size: 0.78rem; color: #888; line-height: 1.4; }
.error-message,
.error,
.invalid-feedback {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 4px;
}
.error-list ul { list-style: disc; padding-left: 20px; margin: 8px 0 0; }

/* Consents */
.consent-group {
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--light-bg);
    margin-bottom: 12px;
}
.consent-group.required-consent {
    border-left: 4px solid var(--orange);
    padding-left: 12px;
}
.consent-label {
    display: flex;
    gap: 12px;
    cursor: pointer;
    align-items: flex-start;
}
.consent-label input[type="checkbox"] { margin-top: 4px; accent-color: var(--orange); flex-shrink: 0; }
.consent-text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.5;
}
.consent-text strong { color: var(--dark-blue); }
.consent-text a { color: var(--orange); text-decoration: underline; }
.consent-text i { color: var(--orange); margin-right: 6px; }
.consent-section { margin-top: 24px; }
.consent-section-title { font-size: 1rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 12px; }
.nvs-info-box {
    padding: 14px 16px;
    background: rgba(161, 201, 253, 0.18);
    border-radius: 10px;
    margin-bottom: 14px;
}
.nvs-description { font-size: 0.88rem; color: #333; line-height: 1.6; margin: 0; }

/* Activity summary card on register page */
.activity-summary h3 {
    margin: 0;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(9, 53, 119, 0.08);
    color: var(--dark-blue);
    font-size: 1.1rem;
}
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    padding: 22px 28px;
}
.summary-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.summary-item i {
    color: var(--orange);
    width: 22px;
    margin-top: 2px;
}
.summary-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 2px;
}
.summary-item .value { color: var(--dark-blue); font-weight: 600; font-size: 0.95rem; }
.summary-item .text-success { color: #047857; }
.summary-item .text-warning { color: var(--orange); }

/* Progress steps */
.progress-steps { display: flex; flex-direction: column; gap: 14px; }
.progress-step {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--light-bg);
    transition: background 0.2s;
}
.progress-step.active { background: rgba(250, 98, 3, 0.1); }
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.progress-step.active .step-number { background: var(--orange); color: #fff; }
.step-text { font-size: 0.9rem; color: var(--dark-blue); font-weight: 500; }

/* Help links inside sidebar cards */
.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--light-bg);
    border-radius: 10px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
}
.help-link:hover { background: var(--orange); color: #fff; }
.help-link i { color: var(--orange); }
.help-link:hover i { color: #fff; }
.help-card p { font-size: 0.88rem; color: #555; line-height: 1.5; margin: 0 0 12px; }

/* Form actions */
.form-actions,
.form-actions-mobile {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}
/* The desktop form-actions sits outside form-grid (form-level) so it would
   otherwise span the entire container. Constrain it to align with the main
   column (matching the grid: minmax(0, 1fr) 360px + 48px gap). */
.form-actions {
    max-width: calc(100% - 360px - 48px);
}
.form-actions-mobile { display: none; margin-top: 20px; }
@media (max-width: 980px) {
    .form-actions { display: none; }
    .form-actions-mobile { display: flex; }
}
.form-actions .btn-back,
.form-actions-mobile .btn-back { width: auto; flex: 0 0 auto; }
.form-actions .btn-submit,
.form-actions-mobile .btn-submit { width: auto; flex: 0 0 auto; min-width: 240px; }

/* Description prose */
.description,
.detail-prose,
.article-body {
    line-height: 1.8;
    color: #333;
    font-size: 1rem;
}
.description p,
.detail-prose p,
.article-body p { margin-bottom: 14px; }
.article-body img { border-radius: 12px; margin: 16px 0; }
.article-body h2 { font-size: 1.5rem; margin: 24px 0 12px; }
.article-body h3 { font-size: 1.2rem; margin: 18px 0 10px; }
.article-body ul,
.article-body ol { padding-left: 20px; margin: 12px 0; list-style: revert; }
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--orange); text-decoration: underline; }
.article-body blockquote {
    padding: 14px 18px;
    border-left: 4px solid var(--orange);
    background: var(--light-bg);
    margin: 16px 0;
    font-style: italic;
}

/* ----- Filters wrapper (articles / camps / search) ----- */
.filters-wrapper {
    background: #fff;
    padding: 22px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    margin-bottom: 28px;
    border: 1px solid rgba(9, 53, 119, 0.06);
}
.filters-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.6fr) minmax(180px, 1fr) auto;
    gap: 14px;
    align-items: end;
}
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.filter-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.filter-input,
.filter-select {
    padding: 11px 14px;
    border: 1px solid rgba(9, 53, 119, 0.15);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--black);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(250, 98, 3, 0.12);
}
.filter-actions { display: flex; gap: 8px; }
@media (max-width: 720px) {
    .filters-grid { grid-template-columns: 1fr; }
    .filter-actions { width: 100%; }
    .filter-actions .btn-filter-apply,
    .filter-actions .btn-filter-reset { flex: 1; justify-content: center; }
}

/* ----- Articles ----- */
.article-detail { padding: 60px 0 80px; background: var(--white); }
.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #555;
}
.article-hero-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.article-hero-meta i { color: var(--orange); }
.article-featured {
    width: 100%;
    max-height: 460px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    background: var(--light-bg);
}
.article-featured img { width: 100%; height: 100%; object-fit: cover; }
.article-content {
    background: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    border: 1px solid rgba(9, 53, 119, 0.06);
}
.article-share,
.article-tags {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    margin-top: 20px;
}
.article-share h4,
.article-tags h4 { margin: 0 0 12px; font-size: 0.95rem; color: var(--dark-blue); }
.article-share .share-buttons,
.article-tags .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.article-tags .tag {
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--light-bg);
    color: var(--dark-blue);
    font-size: 0.8rem;
    font-weight: 600;
}
.article-footer-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(9, 53, 119, 0.08);
}
.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.article-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; cursor: zoom-in; }
.articles-pagination { margin-top: 40px; display: flex; justify-content: center; }
.articles-pagination nav,
.articles-pagination ul { display: inline-flex; gap: 4px; }
.articles-pagination a,
.articles-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(9, 53, 119, 0.1);
    color: var(--dark-blue);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.articles-pagination a:hover { background: var(--dark-blue); color: #fff; }
.articles-pagination .active span { background: var(--orange); color: #fff; border-color: var(--orange); }

/* News card grid (articles index) */
.news-grid,
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.news-card,
.article-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover,
.article-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(9, 53, 119, 0.12); }
.news-card-img,
.article-card-img { height: 200px; overflow: hidden; background: var(--light-bg); }
.news-card-img img,
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card-img img,
.article-card:hover .article-card-img img { transform: scale(1.05); }
.news-card-body,
.article-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card-meta,
.article-card-meta {
    display: flex;
    gap: 12px;
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 10px;
}
.news-card h3,
.article-card h3 { color: var(--dark-blue); font-size: 1.1rem; margin: 0 0 10px; line-height: 1.4; }
.news-card p,
.article-card p { font-size: 0.9rem; color: #555; flex: 1; margin: 0 0 14px; line-height: 1.55; }
.news-card-link,
.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.88rem;
}

/* ----- Contact page ----- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}
.contact-method {
    text-align: center;
    padding: 28px 22px;
    transition: transform 0.3s;
}
.contact-method:hover { transform: translateY(-4px); }
.contact-method .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(250, 98, 3, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 14px;
}
.contact-method h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--dark-blue); }
.contact-method p { margin: 0; font-size: 0.88rem; color: #555; }
.contact-method a { color: var(--dark-blue); font-weight: 600; }
.contact-method a:hover { color: var(--orange); }

/* Stock contact page (.contact-main) — scope these rules so they don't
   hijack the Verdenė homepage's own .contacts section, which uses the
   same .contact-item / .contact-icon class names with a different layout. */
.contact-main .contact-info-wrapper,
.contact-main .contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-main .contact-item,
.contact-main .contact-block {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    background: var(--light-bg);
    border-radius: 12px;
}
.contact-main .contact-item i,
.contact-main .contact-block i { color: var(--orange); margin-top: 3px; }
.contact-main .contact-item strong,
.contact-main .contact-block strong { display: block; color: var(--dark-blue); margin-bottom: 2px; }
.contact-faq { margin-top: 32px; }
.contact-main .contact-map iframe { width: 100%; border: 0; border-radius: 16px; min-height: 280px; }

.section-header { margin-bottom: 24px; }
.section-header h2 { margin: 0 0 8px; }
.section-header p { color: #666; margin: 0; }

/* ----- FAQ ----- */
.custom-template .page-hero {
    padding: calc(72px + 56px) 0 56px;
    background: var(--light-bg);
    border-bottom: 1px solid rgba(9, 53, 119, 0.08);
}
.custom-template .page-hero .hero-content { max-width: 720px; }
.custom-template .page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--dark-blue);
    margin: 0 0 14px;
}
.faq-wrapper { padding: 24px; }
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(9, 53, 119, 0.05);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    gap: 16px;
}
.faq-question h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-blue);
    font-weight: 600;
}
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.2s;
}
/* The page JS toggles .active on .faq-question and .open on .faq-answer
   (the matching question + answer pair), not on the parent .faq-item. */
.faq-question.active .faq-toggle,
.faq-item.open .faq-toggle { transform: rotate(180deg); background: var(--orange); color: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer.open,
.faq-item.open .faq-answer { max-height: 1200px; }
.faq-answer-content {
    padding: 0 20px 18px;
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
}
.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
.empty-icon { font-size: 2.5rem; color: var(--dark-blue); opacity: 0.25; margin-bottom: 12px; }

/* ----- Documents (administracinė informacija) ----- */

.documents-wrapper {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Stop the outer .categories-grid from forcing 3 columns inside this page —
   we want each category section to span full width and stack vertically. */
.documents-wrapper .categories-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.document-category-block {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    overflow: hidden;
    margin: 0;
}

/* Category header strip (icon + title + optional description) */
.document-category-block .category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(to right, rgba(9, 53, 119, 0.04), transparent 60%);
    border-bottom: 1px solid rgba(9, 53, 119, 0.06);
}
.document-category-block .category-header .category-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(250, 98, 3, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin: 0;
}
.document-category-block .category-header .category-info { min-width: 0; }
.document-category-block .category-header h2 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--dark-blue);
    font-weight: 700;
    border: 0;
    padding: 0;
    display: block;
}
.document-category-block .category-header p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #666;
}

/* Document list inside a category — vertical stack of compact rows */
.document-category-block .documents-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-collapse: unset;
    border-spacing: 0;
    padding: 8px 0;
}
.document-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    background: transparent;
    border-radius: 0;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(9, 53, 119, 0.06);
}
.document-row:last-child { border-bottom: 0; }
.document-row:hover { background: var(--light-bg); }

.doc-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--light-bg);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.document-row:hover .doc-icon-wrapper {
    background: #fff;
    box-shadow: 0 2px 8px rgba(9, 53, 119, 0.08);
}

.doc-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.doc-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.35;
}
.doc-description {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.45;
}
.doc-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
    color: #888;
}
.doc-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.doc-meta .meta-item i { font-size: 0.7rem; opacity: 0.7; }
.doc-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 6px;
    background: rgba(250, 98, 3, 0.12);
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.doc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 8px;
    background: transparent;
    color: var(--dark-blue);
    border: 1.5px solid rgba(9, 53, 119, 0.15);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.doc-download-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}
.doc-download-btn i { font-size: 0.85rem; }

.documents-empty {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    background: #fff;
    border-radius: 18px;
    border: 1px dashed rgba(9, 53, 119, 0.15);
}
.documents-empty .empty-icon {
    font-size: 3rem;
    color: var(--dark-blue);
    opacity: 0.25;
    margin-bottom: 16px;
}

/* Mobile: collapse to two rows, button moves below */
@media (max-width: 640px) {
    .document-row {
        grid-template-columns: 44px minmax(0, 1fr);
        grid-template-rows: auto auto;
        padding: 14px 16px;
    }
    .doc-download-btn {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 4px;
    }
    .document-category-block .category-header { padding: 16px; }
}

/* ----- Contracts ----- */
.contract-content-wrapper {
    padding: 36px;
    max-width: 720px;
    margin: 100px auto 60px;
}
.control-code-box {
    margin: 24px 0;
    padding: 20px 22px;
    background: var(--light-bg);
    border-radius: 14px;
    border: 1px dashed rgba(250, 98, 3, 0.4);
    text-align: center;
}
.control-code-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 8px;
}
.control-code-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
    font-family: 'Montserrat', monospace;
}
.control-code-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #555;
}

/* ----- Alerts ----- */
.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}
.alert i { margin-top: 3px; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger { background: #fee2e2; color: #b91c1c; }
.alert-info { background: rgba(161, 201, 253, 0.3); color: #093577; }
.alert-card {
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(250, 98, 3, 0.08);
    border-left: 4px solid var(--orange);
    margin-bottom: 20px;
}

/* ----- Search results ----- */
.search-results-section { padding: 60px 0 80px; }
.search-result-item {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 14px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    transition: transform 0.2s;
}
.search-result-item:hover { transform: translateX(4px); border-color: var(--orange); }
.search-result-item h3 { margin: 0 0 8px; font-size: 1.1rem; }
.search-result-item h3 a { color: var(--dark-blue); }
.search-result-item h3 a:hover { color: var(--orange); }
.search-result-item p { font-size: 0.92rem; color: #555; margin: 0 0 8px; }
.search-result-item .result-meta { font-size: 0.78rem; color: #888; }

/* ----- Custom page templates -----
   No padding-bottom on .custom-template itself — the wrapping
   .article-detail / .content-section already handle vertical rhythm.
   Adding one here doubles the gap before the footer on every CMS page. */
.custom-template .content-section {
    padding: 60px 0;
    background: var(--white);
}
.custom-template .content-section + .content-section { background: var(--light-bg); }
.custom-template .content-section h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--dark-blue);
    margin-bottom: 20px;
}
.custom-template .content-section h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin: 24px 0 12px;
}
.custom-template .content-section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}
.custom-template ul:not(.tags-list):not(.share-buttons) {
    padding-left: 20px;
    margin: 12px 0;
    list-style: disc;
    color: #444;
    line-height: 1.7;
}
.custom-template ol { padding-left: 20px; margin: 12px 0; list-style: decimal; color: #444; line-height: 1.7; }

/* Team grid (used by team template) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 24px;
}
.team-member {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    transition: transform 0.3s;
}
.team-member:hover { transform: translateY(-4px); }
.team-member-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    background: var(--light-bg);
}
.team-member-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member h3 { margin: 0 0 4px; font-size: 1rem; color: var(--dark-blue); }
.team-member .role { font-size: 0.85rem; color: var(--orange); font-weight: 600; }

/* ===========================================================
   NEW VERDENĖ CLASSES (introduced by overrides)
   =========================================================== */

/* CTA band */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0b4499 100%);
    color: #fff;
    text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; margin-bottom: 24px; }
.cta-band .btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}
.cta-band .btn-primary:hover { background: #e05800; transform: translateY(-2px); }

/* Departments grid (overrides departments/index) */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.department-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    color: inherit;
}
.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(9, 53, 119, 0.12);
}
.department-card-img {
    height: 200px;
    background: var(--light-bg);
    overflow: hidden;
}
.department-card-img img { width: 100%; height: 100%; object-fit: cover; }
.department-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-bg) 100%);
    color: var(--dark-blue);
    opacity: 0.45;
}
.department-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.department-card-body h3 { color: var(--dark-blue); font-size: 1.15rem; margin: 0 0 8px; }
.department-card-body p { color: #555; font-size: 0.9rem; line-height: 1.55; margin: 0 0 14px; }
.department-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: #666;
}
.department-card-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.department-card-meta-item i,
.department-card-meta-item svg { color: var(--orange); }
.department-card-link {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

/* Detail hero image (used by departments/show) */
.detail-hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: var(--light-bg);
    margin-bottom: 28px;
}
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Detail sections wrapping prose + activities */
.detail-section { margin-bottom: 32px; }
.detail-section-title {
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
}
.detail-prose {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
}

/* Info-card rows (sidebar) */
.info-card-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(9, 53, 119, 0.06);
}
.info-card-row:last-child { border-bottom: none; }
.info-card-row i,
.info-card-row svg { color: var(--orange); margin-top: 4px; flex-shrink: 0; }
.info-card-row > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.info-card-row strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: #888; font-weight: 700; }
.info-card-row span,
.info-card-row a { color: var(--dark-blue); font-weight: 600; font-size: 0.95rem; }
.info-card-row a:hover { color: var(--orange); }

/* Working hours list */
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(9, 53, 119, 0.06);
    font-size: 0.9rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span { color: #666; }
.hours-list li strong { color: var(--dark-blue); font-weight: 600; }

/* ===========================================================
   AUTH PAGES (login, forgot-password)
   These pages extend public.layouts.new-app and use the
   auth-* class vocabulary from resources/scss/public/_auth.scss
   =========================================================== */

.auth-section {
    min-height: calc(100vh - 72px);
    padding: calc(72px + 60px) 0 60px;
    background:
        radial-gradient(circle at 18% 80%, rgba(161, 201, 253, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 82% 18%, rgba(250, 98, 3, 0.08) 0%, transparent 55%),
        var(--light-bg);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    width: 100%;
}
@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 24px;
    }
}

.auth-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 44px 36px;
    box-shadow: 0 20px 50px rgba(9, 53, 119, 0.08);
    border: 1px solid rgba(9, 53, 119, 0.05);
}
@media (max-width: 600px) {
    .auth-card { padding: 28px 24px; border-radius: 18px; }
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}
.auth-header h1 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--dark-blue);
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.auth-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.auth-form .form-group { margin-bottom: 0; }

/* Input with icon */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrapper > i,
.input-wrapper > .fa,
.input-wrapper > .fas,
.input-wrapper > .fab,
.input-wrapper > .far {
    position: absolute;
    left: 16px;
    color: var(--orange);
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 1;
}
.input-wrapper .form-control {
    padding-left: 44px;
    height: 48px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(9, 53, 119, 0.15);
    background: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrapper .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(250, 98, 3, 0.12);
    outline: none;
}

/* Remember-me / forgot-password row */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 4px 0 8px;
}
.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
    cursor: pointer;
    user-select: none;
}
.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--orange);
}
.forgot-link {
    font-size: 0.88rem;
    color: var(--orange);
    font-weight: 600;
    transition: color 0.2s;
}
.forgot-link:hover { color: #e05800; text-decoration: underline; }

/* Auth submit button */
.btn-auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.2s;
    margin-top: 8px;
}
.btn-auth-submit:hover {
    background: #e05800;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(250, 98, 3, 0.25);
}
.btn-auth-submit:active { transform: translateY(0); }

/* Footer ("Don't have an account?" / "Back to login") */
.auth-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(9, 53, 119, 0.08);
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
.auth-footer p { margin: 0 0 8px; }
.register-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-blue);
    font-weight: 600;
    transition: color 0.2s;
}
.register-link:hover { color: var(--orange); }

/* ----- Side panel ----- */
.auth-side {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0b4499 100%);
    border-radius: 24px;
    padding: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.auth-side::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(2px);
}
.auth-side::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.3;
}
@media (max-width: 600px) {
    .auth-side { padding: 32px 24px; border-radius: 18px; }
}

.side-content {
    position: relative;
    z-index: 1;
    width: 100%;
}
.side-content h2 {
    font-size: clamp(1.5rem, 2.6vw, 1.9rem);
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}
.benefits-list li i,
.benefits-list li svg {
    color: var(--orange);
    font-size: 1.05rem;
    flex-shrink: 0;
    width: 20px;
}

.side-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.side-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.side-footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.side-footer .contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}
.side-footer .contact-info a:hover { color: var(--orange); }
.side-footer .contact-info a i { color: var(--orange); width: 18px; }

/* Hide bug-report and accessibility widgets on auth pages so they don't
   clutter the layout. They're not useful while logging in. */
.auth-section ~ .bug-report-widget,
.auth-section ~ .accessibility-widget { display: none; }

/* ===========================================================
   404 error page (.services-v2 / .service-v2-card / cta card)
   =========================================================== */

.services-v2 {
    padding: 80px 0;
}
.services-v2 > .container > h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--dark-blue);
    margin: 0 0 32px;
}
.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.service-v2-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.service-v2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(9, 53, 119, 0.12);
}
.service-v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-v2-card:hover::before { transform: scaleX(1); }
.service-v2-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(250, 98, 3, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.service-v2-card:hover .service-v2-icon { transform: scale(1.08); }
.service-v2-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 10px;
    line-height: 1.3;
}
.service-v2-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}
.service-v2-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--dark-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    align-self: flex-start;
}
.service-v2-link:hover {
    background: var(--orange);
    color: #fff;
    transform: translateX(4px);
}

/* CTA card on 404 — featured style */
.service-v2-cta-card {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0b4499 100%);
    border-radius: 20px;
    padding: 32px 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(9, 53, 119, 0.15);
}
@media (min-width: 760px) {
    .service-v2-cta-card { grid-column: span 2; }
}
.service-v2-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(2px);
}
.service-v2-cta-card .cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-v2-cta-card .cta-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}
.service-v2-cta-card .cta-content > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    max-width: 420px;
}
.service-v2-cta-card .cta-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}
.service-v2-cta-card .cta-contact-info .contact-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}
.service-v2-cta-card .cta-contact-info .contact-item i {
    color: var(--orange);
}
.service-v2-cta-card .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    align-self: flex-start;
    margin-top: 8px;
    transition: all 0.2s;
    text-decoration: none;
}
.service-v2-cta-card .cta-button:hover {
    background: #e05800;
    transform: translateY(-2px);
    color: #fff;
}
.service-v2-cta-card .cta-illustration {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.12);
    z-index: 0;
}

/* ===========================================================
   Camps + Events listing cards
   Stock blades use .activity-image / .activity-content /
   .activity-category / .activity-info / .info-item /
   .availability-section variants instead of the Verdenė
   partial's class names. These rules adapt them to the same
   visual language as the .activity-card / .activity-body family.
   =========================================================== */

.activity-card > .activity-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.activity-card > .activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.activity-card:hover > .activity-image img { transform: scale(1.05); }
.activity-card > .activity-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(9, 53, 119, 0.55), transparent);
    pointer-events: none;
}
.activity-card > .activity-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-bg) 100%);
    color: var(--dark-blue);
    opacity: 0.45;
    font-size: 2.5rem;
}
.activity-card > .activity-image .nvs-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}

.activity-card > .activity-content {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

/* "Vaikams" / "Suaugusiems" tag pill — was rendered as a full-width
   strip; turn it into an overlay chip on the image's top-left to match
   Verdenė's .activity-tag look. Inline color overrides win specificity-wise. */
.activity-card .activity-content > .activity-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--dark-blue) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    display: inline-block;
    width: auto;
    align-self: flex-start;
}

.activity-card .activity-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
    margin: 0;
}

.activity-card .activity-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0 8px;
}
.activity-card .activity-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #555;
}
.activity-card .activity-info .info-item i {
    color: var(--orange);
    width: 16px;
    text-align: center;
}

.activity-card .availability-section {
    margin-top: auto;
    padding-top: 12px;
}
.activity-card .availability-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 6px;
}
.activity-card .availability-text strong {
    color: var(--dark-blue);
    font-weight: 700;
}
.activity-card .availability-progress {
    height: 6px;
    background: rgba(9, 53, 119, 0.08);
    border-radius: 3px;
    overflow: hidden;
}
.activity-card .availability-progress .progress-bar {
    height: 100%;
    background: var(--orange);
    transition: width 0.3s;
}

.activity-card > .activity-content > .activity-link {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    align-self: flex-start;
    transition: gap 0.2s;
}
.activity-card > .activity-content > .activity-link:hover {
    gap: 10px;
    color: #e05800;
}

/* Empty / no-results state */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    color: #666;
}
.no-results > i {
    font-size: 2.5rem;
    color: var(--dark-blue);
    opacity: 0.25;
    display: block;
    margin-bottom: 14px;
}
.no-results h3 {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin: 0 0 8px;
}
.no-results p { margin: 0; color: #555; }

/* "Rasta stovyklų:" / "Rasta renginių:" count strip */
.results-info {
    margin: 0 0 22px;
    color: #666;
    font-size: 0.95rem;
}
.results-info strong { color: var(--dark-blue); font-size: 1.05rem; }

/* ===========================================================
   Articles listing — news-item-* card variant (partial)
   =========================================================== */

.news-item {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(9, 53, 119, 0.12);
}
.news-item-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.news-item-image {
    height: 220px;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}
.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-item:hover .news-item-image img { transform: scale(1.05); }
.news-item-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 80px;
    background: linear-gradient(to top, rgba(9, 53, 119, 0.5), transparent);
    pointer-events: none;
}
.news-item-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}
.news-item-title {
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}
.news-item-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: auto;
    align-self: flex-start;
    transition: gap 0.2s;
}
.news-item:hover .news-item-link { gap: 10px; }

/* ===========================================================
   FAQ — "Neradote atsakymo?" contact block
   The stock blade renders .faq-contact > .contact-block > .contact-icon
   + .contact-content with .contact-methods pill buttons. Style it as a
   single card on light-bg matching the rest of the FAQ section.
   =========================================================== */

.faq-contact {
    margin-top: 28px;
}
.faq-contact .contact-block {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(9, 53, 119, 0.06);
    box-shadow: 0 2px 12px rgba(9, 53, 119, 0.04);
}
.faq-contact .contact-block > .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(250, 98, 3, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin: 0;
}
.faq-contact .contact-content {
    flex: 1;
    min-width: 0;
}
.faq-contact .contact-content h3 {
    margin: 0 0 6px;
    color: var(--dark-blue);
    font-size: 1.15rem;
}
.faq-contact .contact-content > p {
    margin: 0 0 14px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}
.faq-contact .contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.faq-contact .contact-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--light-bg);
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
}
.faq-contact .contact-method:hover {
    background: var(--orange);
    color: #fff;
}
.faq-contact .contact-method i { color: var(--orange); }
.faq-contact .contact-method:hover i { color: #fff; }

@media (max-width: 600px) {
    .faq-contact .contact-block {
        flex-direction: column;
        padding: 22px;
    }
}
