/* ============================================================
   HOME.CSS — Homepage specific styles
   ============================================================ */

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(198, 167, 94, 0.15);
    border: 1px solid rgba(198, 167, 94, 0.4);
    color: var(--gold-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 1rem 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.4rem auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ---- About Section ---- */
.about-section {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    bottom: 1.5rem;
    left: -1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow);
}

.about-badge-float i {
    color: var(--gold);
    font-size: 1.5rem;
}

.about-badge-float strong {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 600;
}

.about-badge-float span {
    font-size: 0.75rem;
    color: var(--charcoal-light);
}

.about-years-badge {
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(198, 167, 94, 0.4);
}

.years-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.years-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-text .overline {
    display: block;
    margin-bottom: 0.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--beige);
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

.about-feat i {
    color: var(--gold);
    font-size: 1rem;
    min-width: 18px;
}

/* ---- Services Preview ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card-body {
    padding: 1.3rem;
}

.service-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-card-body p {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ---- Gallery Preview ---- */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(110, 15, 26, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-preview-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-preview-item:nth-child(1) {
    grid-row: span 2;
    aspect-ratio: unset;
}

/* ---- Testimonials ---- */
.testimonials-section {
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    max-width: 860px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(198, 167, 94, 0.12);
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-stars {
    color: #F4B942;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--maroon));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
}

.testimonial-event {
    font-size: 0.82rem;
    color: var(--gold);
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition);
    font-size: 0.9rem;
}

.testimonial-prev {
    left: 1rem;
}

.testimonial-next {
    right: 1rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--beige-dark);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ---- CTA Band ---- */
.cta-band {
    position: relative;
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, #8B1A2A 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.cta-band-overlay {
    position: absolute;
    inset: 0;
    background: rgba(60, 5, 12, 0.3);
}

.cta-band-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-band-text h2 {
    color: var(--white);
    margin-bottom: 0.6rem;
}

.cta-band-text p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-band-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.whatsapp-cta {
    border-color: #25D366 !important;
    color: #25D366 !important;
}

.whatsapp-cta:hover {
    background: #25D366 !important;
    color: var(--white) !important;
}

/* ---- About Mission Text ---- */
.about-mission-text {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-top: 0.8rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
    font-style: italic;
}

/* ---- About Stats Bar ---- */
.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.about-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.about-stat-item>i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 40px;
    text-align: center;
}

.about-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.about-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- About Core Values ---- */
.about-values {
    margin-top: 4rem;
    text-align: center;
}

.values-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(198, 167, 94, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.15), rgba(198, 167, 94, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.value-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scale(1.1);
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-frame img {
        height: 350px;
    }

    .about-years-badge {
        right: 0;
    }

    .about-badge-float {
        left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview-item:nth-child(1) {
        grid-row: auto;
    }

    .cta-band-content {
        flex-direction: column;
        text-align: center;
    }

    .about-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        border-radius: 50px;
        padding: 0.8rem 1.2rem;
        justify-content: center;
    }

    .hero-stat-divider {
        display: none;
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .about-years-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: -2rem auto 2rem;
        width: fit-content;
        z-index: 5;
    }

    .about-badge-float {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 2rem auto -2rem;
        width: fit-content;
        z-index: 5;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .about-stats-bar {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   NOTICES BAR
   ============================================================ */
.notices-bar {
    background: var(--darkbg);
    color: var(--gold);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(198, 167, 94, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 20;
}

.notices-track {
    display: inline-block;
    animation: marquee-scroll 45s linear infinite;
}

.notices-track:hover {
    animation-play-state: paused;
}

.notice-item {
    display: inline-block;
    margin-right: 4rem;
}

.notice-item span {
    margin-right: 0.5rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   PREMIUM SLIDER
   ============================================================ */
.premium-slider-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-color: var(--darkbg);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-left: 5%;
}

.slide-title {
    font-size: 4rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-desc {
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-family: var(--font-body);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--darkbg);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
    border-color: rgba(0, 0, 0, 0.5);
}

/* ============================================================
   OFFER CARDS
   ============================================================ */
.offer-cards-section {
    background: var(--ivory);
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}

.offer-card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-card-icon {
    transform: scale(1.1);
}

.offer-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.offer-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.offer-card-btn {
    display: inline-block;
    padding: 0.6rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-card-btn {
    background: var(--gold);
    color: var(--white);
}

/* ============================================================
   VIDEOS SECTION (YouTube Embeds)
   ============================================================ */
.videos-section {
    background: url('../images/pattern-bg.png') repeat, radial-gradient(circle at right bottom, var(--darkbg), var(--ivory));
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0;
}

@media (max-width: 768px) {
    .notices-bar {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .notice-item {
        margin-right: 2rem;
    }

    .premium-slider-section {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content {
        padding-left: 2rem;
        padding-right: 2rem;
        text-align: center;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .slider-arrow {
        display: none;
        /* Hide arrows on mobile for swipe/dot nav priority */
    }

    .offer-cards-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}