/* ============================================
   PUBLIC PORTAL CSS - YPI Al Ghozali
   Tema: Hijau Muda (#A8E063) + Hijau Tua (#4A7C1F) + Emas (#F4D03F)
   Digunakan di semua halaman publik
   ============================================ */

/* ============================================
   TOMBOL GLOBAL YPI (.btn-ypi)
   Style: border jelas, hover BG hitam
   ============================================ */
.btn-ypi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(26, 46, 31, 0.08);
    color: var(--dark);
    border: 2.5px solid var(--dark);
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 46px;
    white-space: nowrap;
}

.btn-ypi:hover {
    background: var(--dark);
    color: var(--portal-primary);
    border-color: var(--dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-ypi:active {
    transform: translateY(0);
}

.btn-ypi:focus-visible {
    outline: 2px solid var(--portal-primary);
    outline-offset: 2px;
}

/* Versi kecil (untuk header) */
.btn-ypi-sm {
    padding: 0.5rem 1.1rem;
    min-height: 38px;
    font-size: 0.8rem;
    border-width: 2px;
}

/* ============================================
   PUBLIC HEADER
   ============================================ */
.public-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0.625rem 0;
    transition: var(--transition);
}

.public-header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 8px rgba(74, 124, 31, 0.06);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.public-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.public-header .header-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.public-header .header-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(74, 124, 31, 0.1);
}

.public-header .header-brand-text {
    display: flex;
    flex-direction: column;
}

.public-header .header-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.public-header .header-brand-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.public-header.scrolled .header-brand-name {
    color: var(--dark);
}

.public-header.scrolled .header-brand-tagline {
    color: var(--gray-600);
}

.public-header .header-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.public-header .nav-link {
    padding: 0.4rem 0.75rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    min-height: 36px;
    display: flex;
    align-items: center;
    margin-right: 2px;
}

.public-header.scrolled .nav-link {
    color: var(--dark);
}

.public-header .nav-link:hover {
    background-color: rgba(26, 46, 31, 0.08);
    color: var(--dark);
}

.public-header.scrolled .nav-link:hover {
    background-color: var(--portal-primary-light);
    color: var(--primary-dark);
}

.public-header .header-nav .btn-ypi {
    margin-left: 0.5rem;
}

.public-header .mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1.5px solid rgba(26, 46, 31, 0.35);
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    color: var(--dark);
    font-size: 1.2rem;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 40px;
    min-height: 36px;
}

/* ============================================
   PUBLIC FOOTER
   ============================================ */
.public-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 2.5rem 0 0;
    position: relative;
}

.public-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--portal-primary), var(--portal-accent), var(--portal-primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand-tagline {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-about {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.875rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--portal-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 36px;
}

.footer-links a:hover {
    color: var(--portal-primary);
}

.footer-links .link-icon {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-links .link-text-static {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin: 0;
}

/* ============================================
   HERO
   ============================================ */
.public-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--portal-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-bottom: 0px;
}

.public-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(74, 124, 31, 0.35) 0%,
        rgba(168, 224, 99, 0.4) 50%,
        rgba(168, 224, 99, 0.55) 100%
    );
    z-index: 1;
}

.public-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.25rem 0rem;
    color: var(--dark);
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================
   HERO TITLE — Premium Gold + Blur Backdrop
   Emas + outline hijau sangat gelap (brand-forest-deep)
   untuk kontras tinggi di atas background apapun.
   ============================================ */
.public-hero-title {
    display: inline-block;
    max-width: 100%;
    padding: 0.5rem 0.75rem;
    margin: 0;

    /* Hapus background & border kotak */
    background: transparent;
    border: none;
    box-shadow: none;

    /* Teks: emas + outline hijau sangat gelap */
    color: #F4D03F;
    -webkit-text-stroke: 2px #1A2E1F;
    paint-order: stroke fill;

    /* "Blur" mengikuti bentuk huruf — drop-shadow berlapis */
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.85),
        0 0 16px rgba(0, 0, 0, 0.7),
        0 0 24px rgba(0, 0, 0, 0.55),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 32px rgba(244, 208, 63, 0.35);

    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: var(--font-family);
}

.public-hero-subtitle {
    display: inline-block;
    max-width: 720px;
    padding: 0.25rem 0.5rem;
    margin: 0;

    /* Hapus background kotak */
    background: transparent;
    border: none;

    /* Teks putih dengan halo mengikuti huruf */
    color: #FFFFFF;
    text-shadow:
        0 0 6px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.85);

    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-family: var(--font-family);
}

.public-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 0rem;
}

/* Tombol di dalam hero — di atas foto, perlu kontras lebih */
.public-hero .btn-ypi {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    border-color: var(--dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.public-hero .btn-ypi:hover {
    background: var(--dark);
    color: var(--portal-primary);
}

.public-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    flex-shrink: 0;
}

.public-hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   SECTION & CONTAINER
   ============================================ */
.public-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.public-section {
    padding: 3rem 0;
}

.public-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.3;
}

.public-section-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   BERITA CARD
   ============================================ */
.berita-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color-light);
}

.berita-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--portal-primary);
}

.berita-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--gray-100);
}

.berita-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.berita-card-category {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: var(--portal-primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.berita-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.berita-card-excerpt {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 1;
}

.berita-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ============================================
   DONASI CARD
   ============================================ */
.donasi-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color-light);
}

.donasi-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--portal-primary);
}

.donasi-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--gray-100);
}

.donasi-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.donasi-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.donasi-progress {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.donasi-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--portal-primary) 0%, var(--portal-primary-dark) 100%);
    border-radius: 50px;
    transition: width 0.5s ease;
}

.donasi-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.donasi-progress-raised {
    font-weight: 700;
    color: var(--primary-dark);
}

.donasi-progress-target {
    color: var(--gray-400);
}

/* ============================================
   PUBLIC GRID
   ============================================ */
.public-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

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

/* ============================================
   PUBLIC PAGE HERO (Sharing)
   Hero kecil untuk halaman: berita-list, visi-misi,
   sejarah, psb-info. Bukan fullscreen seperti hero home.
   ============================================ */
.public-page-main {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background-color: var(--light, #f9fbf7);
    min-height: 100vh;
}

.public-page-hero {
    background: linear-gradient(135deg, var(--primary, #a8e063) 0%, var(--primary-dark, #4a7c1f) 100%);
    padding: 3rem 0 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.public-page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--light, #f9fbf7);
    clip-path: polygon(0 100%, 0 60%, 50% 0, 100% 60%, 100% 100%);
    opacity: 0.15;
}

.public-page-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.public-page-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-text, #1a2e1f);
    line-height: 1.2;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.public-page-hero-subtitle {
    font-size: 1rem;
    color: rgba(26, 46, 31, 0.75);
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .public-page-hero {
        padding: 2.5rem 0 3rem;
        margin-bottom: 1.5rem;
    }

    .public-page-hero-title {
        font-size: 1.85rem;
    }

    .public-page-hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .public-page-hero {
        padding: 2rem 0 2.5rem;
        margin-bottom: 1rem;
    }

    .public-page-hero-title {
        font-size: 1.5rem;
    }

    .public-page-hero-subtitle {
        font-size: 0.82rem;
    }
}

/* ============================================
   RESPONSIVE — TABLET (min 576px)
   ============================================ */
@media (min-width: 576px) {
    .public-container {
        padding: 0 1.5rem;
    }

    .public-hero-content {
        padding: 6rem 1.5rem 0rem;
    }

    .public-hero-title {
        font-size: 2.2rem;
        padding: 0.85rem 1.75rem;
    }

    .public-hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .btn-ypi {
        min-width: 180px;
    }

    .btn-ypi-sm {
        min-width: auto;
    }

    .public-section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   RESPONSIVE — TABLET LANDSCAPE (min 768px)
   ============================================ */
@media (min-width: 768px) {
    .public-hero-subtitle {
        font-size: 0.95rem;
    }

    .public-section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 3fr 1fr 1.5fr;
        gap: 3rem;
        padding: 0 1.5rem 2.5rem;
    }
}

/* ============================================
   RESPONSIVE — DESKTOP (min 992px)
   ============================================ */
@media (min-width: 992px) {
    .public-hero-content {
        padding: 5rem 2rem 7rem;
    }

    .public-hero-title {
        font-size: 2.5rem;
        padding: 1rem 2.5rem;
    }

    .public-hero-subtitle {
        font-size: 1rem;
        max-width: 640px;
    }

    .public-section {
        padding: 4rem 0;
    }

    .public-section-title {
        font-size: 2.3rem;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
    .public-header {
        padding: 0.5rem 0;
        background: rgba(168, 224, 99, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(26, 46, 31, 0.08);
        overflow: visible;
    }

    .public-header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 4px 30px rgba(74, 124, 31, 0.1);
        overflow: visible;
    }

    .public-header .mobile-menu-toggle {
        display: flex;
    }

    .public-header .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 0.5rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
        gap: 0;
    }

    .public-header .header-nav.mobile-open {
        display: flex;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .public-header .header-nav .nav-link {
        color: var(--dark);
        padding: 0.85rem 1.1rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.25s ease;
    }

    .public-header .header-nav .nav-link:active {
        background: var(--portal-primary-light);
        color: var(--primary-dark);
        transform: scale(0.97);
    }

    .public-header .header-nav .btn-ypi {
        margin: 0.5rem;
        justify-content: center;
        width: calc(100% - 1rem);
        min-height: 48px;
        font-size: 0.9rem;
        border-radius: 14px;
    }

    .public-header.scrolled .mobile-menu-toggle {
        color: var(--dark);
        border-color: var(--border-color);
    }

    body {
        overflow-x: hidden;
    }

    /* HERO MOBILE */
    .public-hero {
        min-height: 100vh !important;
        height: 100vh !important;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0px;
        background-position: center 25%;
    }

    .public-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(74, 124, 31, 0.4) 0%,
            rgba(168, 224, 99, 0.45) 40%,
            rgba(168, 224, 99, 0.55) 70%,
            rgba(168, 224, 99, 0.65) 100%
        );
    }

    .public-hero-content {
        padding: 0rem 1.25rem 0rem !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        height: 100%;
        gap: 0.6rem;
    }

    .public-hero-title {
        display: block;
        width: auto;
        max-width: 100%;
        font-size: 3rem !important;
        line-height: 1.35;
        margin-bottom: 0;
        padding: 0;
        text-align: left;
        -webkit-text-stroke: 1.2px #1A2E1F;
        text-shadow:
            0 0 6px rgba(0, 0, 0, 0.9),
            0 0 12px rgba(0, 0, 0, 0.75),
            0 0 20px rgba(0, 0, 0, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.9);
    }

    .public-hero-subtitle {
        display: block;
        font-size: 1.3rem !important;
        text-align: left;
        margin: 0;
        max-width: 100%;
        line-height: 1.55;
        padding: 0;
        background: transparent;
        text-shadow:
            0 0 6px rgba(0, 0, 0, 0.9),
            0 0 12px rgba(0, 0, 0, 0.7),
            0 2px 4px rgba(0, 0, 0, 0.85);
    }

    .public-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        margin-top: 0.5rem;
        margin-bottom: 0;
        width: 100%;
    }

    .public-hero .btn-ypi {
        font-size: 0.88rem;
        padding: 0.85rem 1.5rem;
        min-height: 48px;
        border-radius: 14px;
        width: 100%;
    }

    .public-hero-wave {
        bottom: -2px;
    }

    /* SECTION MOBILE */
    .public-section {
        padding: 2.5rem 0 1.5rem;
    }

    .public-section-title {
        font-size: 1.35rem;
    }

    .public-section-subtitle {
        font-size: 0.8rem;
    }

    /* FOOTER MOBILE */
    .public-footer {
        padding: 2rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1.25rem 1.5rem;
    }

    .footer-heading {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
        padding-bottom: 0.5rem;
    }

    .footer-heading::after {
        width: 20px;
        height: 2px;
    }

    .footer-links a {
        font-size: 0.75rem;
        min-height: 40px;
    }

    .footer-about {
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding: 0.85rem;
        font-size: 0.68rem;
    }

    /* GRID MOBILE */
    .public-grid-2,
    .public-grid-3,
    .public-grid-4 {
        grid-template-columns: 1fr;
    }
}