/*
Theme Name: основа
Theme URI: https://example.com/
Author: дф
Description: Современная одностраничная тема WordPress для автошколы ВОА с баннером, карточками коллектива, галереей и кликабельным увеличением фото.
Version: 1.1.0
Text Domain: voa-theme-modern
*/

:root {
    --bg: #f5f7fb;
    --panel: #ffffff;
    --panel-2: #f8fafc;
    --text: #132238;
    --muted: #5b6b82;
    --line: rgba(19, 34, 56, 0.10);
    --brand: #d9232d;
    --brand-dark: #b01720;
    --accent: #0b4aa6;
    --shadow: 0 18px 45px rgba(11, 20, 35, 0.08);
    --shadow-soft: 0 8px 22px rgba(11, 20, 35, 0.05);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 60%, #eef3f9 100%);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 84px 0;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.55);
}

.section-title {
    margin: 0 0 28px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-subtitle {
    max-width: 720px;
    margin: -8px 0 28px;
    color: var(--muted);
    font-size: 1.02rem;
}

/* Top bar */
.top-bar {
    background: linear-gradient(90deg, #091b35 0%, #0a2a52 100%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-bar i {
    color: #ff757d;
    margin-right: 8px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.86);
    border-bottom: 1px solid rgba(19,34,56,0.08);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    object-fit: contain;
    background: #f0f5fb;
    padding: 7px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(19,34,56,0.06);
}

.brand-text {
    min-width: 0;
}

.brand-title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-subtitle {
    margin: 3px 0 0;
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
    color: var(--text);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    color: #1a2b45;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
    background: rgba(217,35,45,0.08);
    color: var(--brand-dark);
    transform: translateY(-1px);
}

.nav .nav-cta {
    background: linear-gradient(135deg, var(--brand) 0%, #f14a54 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(217,35,45,0.22);
}

.nav .nav-cta:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 36px;
}

.hero-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 680px;
    background: linear-gradient(135deg, #071427 0%, #0a2a52 100%);
    box-shadow: 0 30px 80px rgba(7, 18, 38, 0.22);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-bg-slide.is-active {
    opacity: 1;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7,18,38,0.92) 0%, rgba(7,18,38,0.80) 45%, rgba(7,18,38,0.52) 72%, rgba(7,18,38,0.22) 100%),
        linear-gradient(180deg, rgba(7,18,38,0.14), rgba(7,18,38,0.18));
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: center;
    min-height: 680px;
    padding: 40px;
}

.hero-copy {
    color: #fff;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy h1 .accent {
    display: inline-block;
    color: #fff;
}

.hero-copy .hero-lead {
    margin: 18px 0 0;
    font-size: clamp(20px, 2.15vw, 30px);
    font-weight: 800;
    color: #ff878d;
    letter-spacing: -0.03em;
}

.hero-copy .hero-text {
    margin: 16px 0 0;
    max-width: 620px;
    color: rgba(255,255,255,0.92);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, #f14a54 100%);
    box-shadow: 0 16px 28px rgba(217,35,45,0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
}

.btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

.hero-points {
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-points-inline {
    flex-wrap: nowrap;
    white-space: nowrap;
}

.hero-points-inline .point {
    padding: 8px 12px;
    font-size: 0.84rem;
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-points-inline {
        flex-wrap: wrap;
        white-space: normal;
    }
}

.point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-aside {
    display: grid;
    gap: 14px;
    align-self: stretch;
}

.hero-aside-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    color: #fff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.hero-aside-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

.hero-aside-link {
    display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    font-weight: 700;
}

.hero-aside-link:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.hero-aside-card-accent {
    background: rgba(255,255,255,0.16);
}

.hero-aside-card-accent strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.hero-aside-card-accent p {
    margin: 0;
    color: rgba(255,255,255,0.88);
}

.hero-dots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, width 0.18s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #fff;
}

.hero-dot:hover {
    transform: translateY(-1px);
}


/* Cards / sections */
.grid {
    display: grid;
    gap: 22px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel {
    background: var(--panel);
    border: 1px solid rgba(19,34,56,0.07);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.soft-panel {
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(19,34,56,0.07);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.about-card,
.service-card,
.promo-card,
.team-card,
.contact-card {
    padding: 26px;
}

.about-card p,
.contact-card p,
.service-note,
.team-role,
.team-meta {
    color: var(--muted);
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-list-accent .pill {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff8a00 0%, #e52e71 100%);
    box-shadow: 0 12px 26px rgba(229,46,113,0.20);
}

.about-list-accent .pill:nth-child(2) {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
    box-shadow: 0 12px 26px rgba(0,131,176,0.18);
}

.about-list-accent .pill:nth-child(3) {
    background: linear-gradient(135deg, #7f53ac 0%, #647dee 100%);
    box-shadow: 0 12px 26px rgba(100,125,238,0.18);
}

.about-list-accent .pill:nth-child(4) {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    color: #202020;
    box-shadow: 0 12px 26px rgba(247,151,30,0.18);
}

.about-list-accent .pill:nth-child(5) {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 12px 26px rgba(17,153,142,0.18);
}

.about-list-accent .link-pill {
    background: linear-gradient(135deg, rgba(11,74,166,0.12), rgba(11,74,166,0.22));
    color: var(--accent);
    border: 1px solid rgba(11,74,166,0.14);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 700;
    color: #21324a;
}

.link-pill {
    background: rgba(11,74,166,0.08);
    color: var(--accent);
}

.link-pill:hover {
    background: rgba(11,74,166,0.12);
}

/* Table */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(19,34,56,0.08);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.price-table th,
.price-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(19,34,56,0.08);
}

.price-table th {
    background: #0f315f;
    color: #fff;
    font-weight: 800;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td:last-child {
    font-weight: 800;
    color: var(--brand);
}

/* Team */
.team-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 22px;
}

.team-photo,
.gallery-photo {
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(19,34,56,0.08);
    background: #eef3f8;
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
}

.team-photo {
    aspect-ratio: 1 / 1.08;
}

.gallery-photo {
    aspect-ratio: 1 / 0.82;
}

.team-photo img,
.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.team-photo:hover img,
.gallery-photo:hover img {
    transform: scale(1.02);
}

.team-name {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.22;
}

.team-role {
    margin: 0;
    font-weight: 600;
}

.team-meta {
    margin: 0;
    font-size: 0.94rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217,35,45,0.08);
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.84rem;
    line-height: 1;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* Contacts */
.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 22px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(19,34,56,0.08);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(217,35,45,0.08);
    color: var(--brand);
}

.contact-text {
    margin: 0;
}

.map-frame {
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(19,34,56,0.08);
    box-shadow: var(--shadow-soft);
    background: #dfe8f2;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #071427 0%, #091b35 100%);
    color: rgba(255,255,255,0.86);
    padding: 26px 0 30px;
    margin-top: 36px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-inner strong {
    color: #fff;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 16, 0.92);
    display: grid;
    place-items: center;
    padding: 22px;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-frame {
    width: min(1080px, 100%);
    max-height: min(92vh, 920px);
    display: grid;
    gap: 14px;
    justify-items: end;
}

.lightbox-close {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(92vh - 66px);
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

body.lightbox-open {
    overflow: hidden;
}

/* Utilities */
.muted {
    color: var(--muted);
}

.spacer {
    height: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-inner,
    .contacts-layout,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
        padding: 30px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 16px;
        left: 16px;
        padding: 14px;
        border-radius: 22px;
        border: 1px solid rgba(19,34,56,0.08);
        background: rgba(255,255,255,0.98);
        box-shadow: var(--shadow);
        display: grid;
        gap: 8px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav a {
        justify-content: flex-start;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 10px;
    }

    .hero-aside {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .header-inner {
        gap: 12px;
    }

    .brand-title {
        font-size: 0.96rem;
    }

    .brand-subtitle {
        font-size: 0.78rem;
    }

    .hero-card {
        border-radius: 26px;
    }

    .hero-inner {
        padding: 22px;
        gap: 18px;
    }

    .hero-copy .hero-text {
        font-size: 0.98rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-aside {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .price-table th,
    .price-table td {
        padding: 14px 16px;
    }
}


/* compact docs update */
.docs-small {
    grid-template-columns: 0.95fr 1.1fr 0.95fr;
    grid-template-areas: "left main right";
    max-width: 980px;
    margin: 0 auto;
}
.docs-small .document-card {
    text-decoration: none;
    color: inherit;
    padding: 18px;
    min-height: 180px;
}
.docs-small .document-card h3 {
    font-size: 1.02rem;
    margin: 10px 0 8px;
}
.docs-small .document-card p {
    font-size: 0.92rem;
}
.docs-small .document-card-main {
    min-height: 220px;
}
.hero-copy .hero-text {
    max-width: 520px;
}
@media (max-width: 720px) {
    .docs-small {
        grid-template-columns: 1fr;
        grid-template-areas: "main" "left" "right";
    }
    .docs-small .document-card,
    .docs-small .document-card-main {
        min-height: auto;
    }
}


/* Youth promo refresh */
.hero-card-static {
    min-height: 680px;
}

.hero-bg {
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.18) saturate(1.08) contrast(1.02);
    transform: scale(1.01);
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7,18,38,0.72) 0%, rgba(7,18,38,0.56) 40%, rgba(7,18,38,0.22) 100%),
        linear-gradient(180deg, rgba(7,18,38,0.08), rgba(7,18,38,0.18));
}

.hero-inner-single {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 40px;
}

.hero-copy-compact {
    max-width: 720px;
}

.hero-points {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 22px;
    width: fit-content;
    max-width: 100%;
}

.point {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.95);
    font-size: 0.80rem;
    font-weight: 600;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
}

.point i {
    font-size: 0.9em;
}

.section-enroll {
    padding-top: 28px;
}

.enroll-panel {
    padding: 26px;
    display: grid;
    gap: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.enroll-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.enroll-text {
    margin: 0;
    color: var(--muted);
    max-width: 820px;
}

.enroll-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-promo {
    background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.90));
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.promo-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    border-radius: 24px;
    min-height: 100%;
}

.promo-card h3 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.2;
}

.promo-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.promo-card .badge {
    align-self: flex-start;
}

.promo-footnote {
    margin: 18px 0 0;
    font-size: 0.92rem;
    color: var(--muted);
    max-width: 1180px;
}

.documents-stair.docs-five {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-areas:
        "left main right"
        "left-bottom main right-bottom";
    gap: 16px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: start;
}

.docs-five .document-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 18px;
    min-height: 178px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(19,34,56,0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.docs-five .document-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.docs-five .document-card h3 {
    margin: 10px 0 8px;
    font-size: 1.02rem;
}

.docs-five .document-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.docs-five .document-card-main {
    min-height: 252px;
    transform: translateY(-14px);
    background:
        radial-gradient(circle at top right, rgba(217,35,45,0.10), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid rgba(11,74,166,0.12);
}

.docs-five .document-card-left { grid-area: left; transform: translateY(24px); }
.docs-five .document-card-right { grid-area: right; transform: translateY(44px); }
.docs-five .document-card-left-bottom { grid-area: left-bottom; transform: translateY(12px); }
.docs-five .document-card-right-bottom { grid-area: right-bottom; transform: translateY(18px); }

.document-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11,74,166,0.08);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.84rem;
}

.document-seal {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(217,35,45,0.10);
    color: var(--brand-dark);
    font-weight: 900;
}

@media (max-width: 1100px) {
    .hero-inner-single {
        padding: 28px;
    }

    .hero-card-static,
    .hero-inner-single {
        min-height: 620px;
    }

    .promo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .documents-stair.docs-five {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "main main"
            "left right"
            "left-bottom right-bottom";
    }

    .docs-five .document-card-main,
    .docs-five .document-card-left,
    .docs-five .document-card-right,
    .docs-five .document-card-left-bottom,
    .docs-five .document-card-right-bottom {
        transform: none;
    }
}

@media (max-width: 720px) {
    .hero-inner-single,
    .hero-card-static {
        min-height: 560px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .promo-grid,
    .documents-stair.docs-five {
        grid-template-columns: 1fr;
    }

    .documents-stair.docs-five {
        grid-template-areas:
            "main"
            "left"
            "right"
            "left-bottom"
            "right-bottom";
    }

    .docs-five .document-card,
    .docs-five .document-card-main {
        min-height: auto;
    }
}


/* Revision: brighter banner, more visible social header, compact docs/cards */
.top-bar-right {
    align-items: center;
    gap: 12px;
}

.social-label {
    color: rgba(255,255,255,0.92);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.top-bar-right a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    transition: transform .2s ease, background .2s ease;
}

.top-bar-right a:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.18);
}

.top-bar-right i {
    margin-right: 0;
    font-size: 1.15rem;
    color: #fff;
}

.hero-bg img {
    filter: brightness(1.34) saturate(1.08) contrast(1.03);
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7,18,38,0.60) 0%, rgba(7,18,38,0.40) 44%, rgba(7,18,38,0.14) 100%),
        linear-gradient(180deg, rgba(7,18,38,0.06), rgba(7,18,38,0.12));
}

.hero-copy-compact {
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section-enroll .enroll-card-small {
    max-width: 520px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enroll-card-small h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.15;
}

.enroll-card-small p {
    margin: 0;
    color: var(--muted);
}

.promo-deadline {
    margin: 8px 0 0;
    color: var(--brand);
    font-size: 1.02rem;
    font-weight: 800;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.promo-card {
    min-height: 100%;
}

.promo-card h3 {
    margin: 0;
    font-size: 1.03rem;
}

.promo-card p {
    font-size: 0.94rem;
}

.doc-card {
    text-decoration: none;
    color: inherit;
    min-height: 172px;
}

.docs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doc-card-1 { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.doc-card-2 { background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%); }
.doc-card-3 { background: linear-gradient(180deg, #ffffff 0%, #f7fff9 100%); }
.doc-card-4 { background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%); }
.doc-card-5 { background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%); }

.doc-card .badge {
    align-self: flex-start;
    font-size: 0.8rem;
}

.doc-card h3 {
    font-size: 1rem;
    line-height: 1.2;
}

.doc-card p {
    margin-top: auto;
    color: var(--brand);
    font-weight: 700;
}

.team-grid-no-photo {
    align-items: stretch;
}

.team-card.no-photo {
    gap: 12px;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, #ff6b72 100%);
    box-shadow: var(--shadow-soft);
}

.team-card.no-photo .badge {
    align-self: flex-start;
}

.team-card.no-photo .team-name {
    margin-top: 0;
}

.team-card.no-photo .team-meta {
    margin: 0;
}

.documents-header {
    margin-bottom: 18px;
}

.section-documents {
    padding-top: 44px;
}

.section-documents .section-title,
.section-promo .section-title {
    margin-bottom: 14px;
}

.section-promo .promo-card,
.section-documents .doc-card {
    border: 1px solid rgba(19,34,56,0.07);
}

.section-promo .promo-card .badge,
.section-documents .doc-card .badge {
    background: rgba(11,74,166,0.10);
    color: var(--accent);
}

.promo-footnote {
    margin-top: 18px;
    color: var(--muted);
}

.promo-footnote strong {
    color: var(--brand);
}

@media (max-width: 1100px) {
    .promo-grid,
    .docs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid-no-photo {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .simple-photo-grid-3,
    .simple-photo-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .social-label {
        font-size: 0.88rem;
    }

    .promo-grid,
    .docs-grid,
    .team-grid-no-photo,
    .simple-photo-grid-3,
    .simple-photo-grid-4 {
        grid-template-columns: 1fr;
    }

    .section-enroll .enroll-card-small {
        max-width: 100%;
    }

    .team-avatar {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }
}


/* Theme accents and new cards */
body {
    background:
        radial-gradient(circle at top left, rgba(217,35,45,0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(11,74,166,0.10), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.section:nth-of-type(odd) {
    background: rgba(255,255,255,0.62);
}

.section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(10,42,82,0.03), rgba(10,42,82,0.07));
}

.about-card-accent {
    background:
        radial-gradient(circle at top right, rgba(217,35,45,0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.about-card-wide {
    grid-column: 1 / -1;
}

.simple-photo-grid {
    gap: 18px;
}

.simple-photo-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-photo-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.simple-photo-card {
    padding: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.simple-photo-card-plain {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.section-rek .gallery-photo,
.section-class .gallery-photo {
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

.simple-photo-card-plain .gallery-photo {
    aspect-ratio: auto;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

.section-rek .gallery-photo img,
.section-class .gallery-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transform: none;
}

.section-rek .gallery-photo:hover img,
.section-class .gallery-photo:hover img {
    transform: none;
}

.section-promo .promo-card {
    border: 1px solid rgba(217,35,45,0.12);
    box-shadow: 0 18px 42px rgba(11,20,35,0.12);
}

.promo-card-1 { background: linear-gradient(180deg, #ffffff 0%, #ffeef1 100%); }
.promo-card-2 { background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%); }
.promo-card-3 { background: linear-gradient(180deg, #ffffff 0%, #effff2 100%); }
.promo-card-4 { background: linear-gradient(180deg, #ffffff 0%, #fff4df 100%); }
.promo-card-5 { background: linear-gradient(180deg, #ffffff 0%, #f1efff 100%); }

.team-grid-circular {
    align-items: stretch;
}

.team-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    gap: 12px;
}

.team-card-photo {
    background:
        radial-gradient(circle at top, rgba(217,35,45,0.08), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.92);
    box-shadow: 0 14px 28px rgba(11,20,35,0.10);
    background: #edf3fa;
    display: grid;
    place-items: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    position: relative;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, #ff6b72 100%);
    box-shadow: var(--shadow-soft);
}

.team-photo-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.team-card-empty {
    background:
        radial-gradient(circle at top, rgba(11,74,166,0.08), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.team-card-empty .team-photo {
    gap: 10px;
    flex-direction: column;
    border-style: dashed;
    border-color: rgba(11,74,166,0.22);
}

.team-card .badge {
    align-self: flex-start;
}

.team-card .team-name {
    font-size: 1.02rem;
    line-height: 1.2;
}

.team-card .team-role {
    margin: 0;
    font-weight: 700;
}

.team-card .team-meta {
    margin: 0;
    font-size: 0.93rem;
}

.section-techpark {
    background: linear-gradient(180deg, rgba(11,74,166,0.03), rgba(217,35,45,0.04));
}

.techpark-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.techpark-card {
    position: relative;
    overflow: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.techpark-card-framed .gallery-photo {
    border-style: solid;
    border-color: rgba(19,34,56,0.08);
    border-width: 1px 1px 2px 1px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.techpark-caption {
    font-weight: 800;
    color: #1a2b45;
    text-align: center;
}

.techpark-card .gallery-photo {
    border-radius: 28px;
    aspect-ratio: 1 / 0.82;
}

.gallery-photo img {
    transition: transform .22s ease, filter .22s ease;
}

.gallery-photo:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.docs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-documents .doc-card {
    border: 1px solid rgba(19,34,56,0.07);
}

.section-promo .promo-card,
.section-documents .doc-card {
    position: relative;
    overflow: hidden;
}

.section-promo .promo-card::after,
.section-documents .doc-card::after,
.team-card::after,
.techpark-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 40%);
}

.vk-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 3500;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 12px;
}

.vk-widget-button {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #2787f5 0%, #4f9cff 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(39,135,245,0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.vk-widget-panel {
    width: min(320px, calc(100vw - 32px));
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(19,34,56,0.10);
    box-shadow: var(--shadow);
    transform: translateY(10px) scale(0.96);
    transform-origin: right bottom;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.vk-widget.is-open .vk-widget-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.vk-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.vk-widget-header strong {
    font-size: 1rem;
}

.vk-widget-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(19,34,56,0.06);
    color: var(--text);
    cursor: pointer;
    font-size: 1.1rem;
}

.vk-widget-panel p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.95rem;
}

.vk-widget-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2787f5 0%, #4f9cff 100%);
    color: #fff;
    font-weight: 800;
}

.site-footer {
    background: linear-gradient(180deg, #071427 0%, #0a2345 100%);
}

@media (max-width: 1100px) {
    .techpark-grid,
    .docs-grid,
    .team-grid-circular {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .techpark-grid,
    .docs-grid,
    .team-grid-circular {
        grid-template-columns: 1fr;
    }

    .vk-widget {
        right: 12px;
        bottom: 12px;
        flex-direction: row-reverse;
    }

    .vk-widget-panel {
        width: min(280px, calc(100vw - 24px));
    }
}


/* User update: larger text in About and Documents, red left stripe on files */
#about .about-card p,
#about .about-card-wide p {
    font-size: 1.08rem;
    line-height: 1.75;
}

#documents .section-title {
    font-size: clamp(30px, 3.2vw, 46px);
}

#documents .doc-card {
    border-left: 6px solid #d9232d;
    padding-left: 20px;
}

#documents .doc-card h3 {
    font-size: 1.12rem;
    line-height: 1.28;
}

#documents .doc-card p {
    font-size: 0.98rem;
}

#documents .doc-card:hover {
    border-left-color: #b5151d;
}


/* === User updates: team photo borders and document colors === */
#team .team-photo {
    border: 4px solid #e53935;
    box-shadow: 0 14px 28px rgba(229,57,53,0.18);
}

#team .team-card-photo {
    background:
        radial-gradient(circle at top, rgba(229,57,53,0.08), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

.section-documents .doc-card {
    border: 1px solid rgba(19,34,56,0.07);
    box-shadow: 0 18px 42px rgba(11,20,35,0.10);
}

.section-documents .doc-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(180deg, rgba(229,57,53,0.95), rgba(229,57,53,0.55));
}

.section-documents .doc-card {
    position: relative;
    overflow: hidden;
}

.section-documents .doc-card-1 {
    background: linear-gradient(180deg, #fff7f7 0%, #ffe3e3 100%);
}

.section-documents .doc-card-2 {
    background: linear-gradient(180deg, #fffaf1 0%, #ffe3b8 100%);
}

.section-documents .doc-card-3 {
    background: linear-gradient(180deg, #f4fbff 0%, #dcefff 100%);
}

.section-documents .doc-card-4 {
    background: linear-gradient(180deg, #f3fff6 0%, #d6f7de 100%);
}

.section-documents .doc-card-5 {
    background: linear-gradient(180deg, #f7f4ff 0%, #e2d9ff 100%);
}

.section-documents .doc-card-6 {
    background: linear-gradient(180deg, #fff4fb 0%, #ffd8ec 100%);
}

.section-documents .doc-card-7 {
    background: linear-gradient(180deg, #f6fff5 0%, #dff7d7 100%);
}

.section-documents .doc-card .badge {
    background: rgba(255,255,255,0.62);
    color: #7a1c1c;
}

.section-documents .doc-card-2 .badge { color: #7a4b00; }
.section-documents .doc-card-3 .badge { color: #1b5c85; }
.section-documents .doc-card-4 .badge { color: #1e6b3a; }
.section-documents .doc-card-5 .badge { color: #5b3fa3; }
.section-documents .doc-card-6 .badge { color: #9a2d64; }
.section-documents .doc-card-7 .badge { color: #2f6e2f; }

.section-documents .doc-card h3 {
    font-size: 1.05rem;
}

.section-documents .doc-card p {
    color: #9b1f28;
}

.section-documents .doc-card-2 p { color: #9b5f00; }
.section-documents .doc-card-3 p { color: #1f5f86; }
.section-documents .doc-card-4 p { color: #1e6b3a; }
.section-documents .doc-card-5 p { color: #5b3fa3; }
.section-documents .doc-card-6 p { color: #9a2d64; }
.section-documents .doc-card-7 p { color: #2f6e2f; }

/* FINAL OVERRIDE: tighten banner lines and remove oversized gaps */
.hero-card-static .hero-copy-compact,
.hero-inner-single .hero-copy-compact,
.hero-copy-compact {
    max-width: 660px !important;
}

.hero-card-static .hero-copy-compact h1,
.hero-inner-single .hero-copy-compact h1,
.hero-copy-compact h1 {
    line-height: 1.02 !important;
    margin-bottom: 8px !important;
}

.hero-card-static .hero-copy-compact .hero-lead,
.hero-inner-single .hero-copy-compact .hero-lead,
.hero-copy-compact .hero-lead {
    margin: 8px 0 0 !important;
    line-height: 1.12 !important;
}

.hero-card-static .hero-copy-compact .hero-text,
.hero-inner-single .hero-copy-compact .hero-text,
.hero-copy-compact .hero-text,
.hero-card-static .hero-copy-compact p,
.hero-inner-single .hero-copy-compact p,
.hero-copy-compact p {
    margin: 0 !important;
    line-height: 1.18 !important;
}

.hero-card-static .hero-copy-compact .hero-text + p,
.hero-inner-single .hero-copy-compact .hero-text + p,
.hero-copy-compact .hero-text + p,
.hero-card-static .hero-copy-compact p + p,
.hero-inner-single .hero-copy-compact p + p,
.hero-copy-compact p + p {
    margin-top: 6px !important;
}

.hero-card-static .hero-copy-compact .hero-points,
.hero-inner-single .hero-copy-compact .hero-points,
.hero-copy-compact .hero-points {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
    margin-top: 12px !important;
    width: fit-content !important;
    max-width: 100% !important;
}

.hero-card-static .hero-copy-compact .hero-points-inline,
.hero-inner-single .hero-copy-compact .hero-points-inline,
.hero-copy-compact .hero-points-inline {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    white-space: normal !important;
}

.hero-card-static .hero-copy-compact .point,
.hero-inner-single .hero-copy-compact .point,
.hero-copy-compact .point {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    white-space: nowrap !important;
    font-size: 0.95rem !important;
    line-height: 1.15 !important;
    padding: 7px 12px !important;
    margin: 0 !important;
}

@media (max-width: 720px) {
    .hero-card-static .hero-copy-compact,
    .hero-inner-single .hero-copy-compact,
    .hero-copy-compact {
        max-width: 100% !important;
    }

    .hero-card-static .hero-copy-compact .hero-text,
    .hero-inner-single .hero-copy-compact .hero-text,
    .hero-copy-compact .hero-text {
        max-width: 100% !important;
    }
}


/* Compact nearest set text only */
#enroll .enroll-panel {
    gap: 10px;
}

#enroll .enroll-panel h3 {
    margin: 0;
    line-height: 1.18;
    font-size: clamp(20px, 2.3vw, 28px);
    max-width: 920px;
}

#enroll .enroll-panel p {
    margin: 0;
    line-height: 1.28;
    max-width: 920px;
}

#enroll .enroll-panel p + p {
    margin-top: 2px;
}

#enroll .enroll-panel .badge {
    margin-bottom: 4px;
}


/* Practice ground photos */
.section-practice {
    background: linear-gradient(180deg, rgba(217,35,45,0.03), rgba(11,74,166,0.03));
}

.practice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practice-card {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.practice-card .gallery-photo {
    border: 0;
    box-shadow: 0 14px 28px rgba(11,20,35,0.10);
    border-radius: 22px;
    background: transparent;
    aspect-ratio: 3 / 2;
}

.practice-card .gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

@media (max-width: 1100px) {
    .practice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .practice-grid {
        grid-template-columns: 1fr;
    }
}
