/* The Modern CSS Reset by Josh Comeau */
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}


body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
    background-color: var(--palegrey);
    overflow-x: hidden;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
    10. Create a root stacking context
  */
#root,
#__next {
    isolation: isolate;
}

img {
    width: 100%;
    height: auto;
}

:root {
    --brightGreen: #b8d43a;
    --lightGreen: #D4E653;
    --brightPink: #DA0278;
    --offWhite: #F6F4F5;
    --brightRed: #ce023d;
    --darkgrey: #32373c;
    --darkPurple: #5A2D75;
    --deepPurple: #3D1C55;
    --grey: #666666;
    --palegrey: #F6F4F5;
    --phanitasPurple: #8856a3;
    --phanitasYellow: #fcb900;
    --phanitasGreen: #A9CB31;
    --palePurple: #e3d5ec;
    /* soft, airy lavender tone */
    --paleGreen: #d9f0c1;
    /* gentle, minty green */
    --palePink: #f9d6e5;
}

a {
    text-decoration: none;
    color: var(--deepPurple);
}

/* Global Styles */

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #3D1C55;
    background-color: var(--palegrey);
    width: 100%;
}

header {
    background-color: var(--phanitasGreen);
    height: 120px;
}

.content-wrapper {
    width: 90%;
    margin: 50px 0;

}

.fade-in {
    opacity: 0;
    transition: opacity 300ms ease-in;
}

.fade-in.appear {
    opacity: 1;
}

.from-left {
    transform: translateX(-50%);
}

.from-right {
    transform: translateX(50%);
}

.from-left,
.from-right {
    transition: transform 400ms ease-in;
}

.from-left.appear,
.from-right.appear {
    transform: translateX(0)
}

/* Nav Styles */
nav {
    height: 100%;
}

.logo {
    width: 100px;
    height: 100px;
}

.nav-header {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-shadow: 1px 1px 3px #666666;
}

.side {
    position: fixed;
    top: 0;
    left: 0;
    width: 275px;
    height: 100%;
    background-color: var(--lightGreen);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateX(-100%);
    transition: 1s;
    box-shadow: 1px 5px 5px #666666;
    z-index: 2;
}

.show-sidebar {
    transform: translate(0);
}

.toggleBtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s linear;
}

.toggleBtn:hover {
    color: var(--brightPink);
    transform: rotate(90deg);
}

.fa-bars {
    font-size: 2rem;
}

.close-btn {
    width: 40px;
    height: 40px;
    border: none;
    align-self: flex-end;
    background-color: var(--lightGreen);
    color: var(--brightRed);
}

.links {
    list-style: none;
}


li {
    padding: 1rem 0;
}

a.nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--deepPurple);
    transition: color 0.3s ease;
}

a.nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--brightPink);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

a.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

a.nav-link:hover {
    color: var(--brightPink);
}


a.nav-link:link {
    text-decoration: none;
    font-weight: 600;
    color: var(--deepPurple);
    cursor: pointer;
}

a.nav-link:visited {
    color: var(--phanitasPurple)
}

a.nav-link:focus {
    background-color: var(--palePurple);
    color: var(--darkPurple);
    outline-offset: 2px;
    text-decoration: none;
}

a.nav-link:active {
    background-color: var(--palePurple);
    color: var(--deepPurple);
    outline: none;
}

a.nav-link[aria-current="page"] {
    text-decoration: underline wavy var(--brightPink) 0.15rem;
    text-underline-offset: 0.5rem;
}

.langBtn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--brightPink);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2rem;
    border: none;
}

.langBtn:hover {
    background-color: var(--phanitasYellow);
    color: #3D1C55;
}

.phone {
    font-weight: 700;
}

.phone a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--phanitasPurple);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2rem;
    border: none;
}

.phone a:hover {
    background-color: var(--darkPurple);
}

/* Hero Styles */
.hero-area {
    min-height: 500px;
    display: flex;
    justify-content: center;
    background-color: var(--palegrey)
}

h1 {
    font-family: "Hind Madurai", sans-serif;
    font-size: 2.2rem;
    padding-bottom: 1rem;
    color: var(--deepPurple);
}

h2 {
    padding-bottom: .8rem;
}

h3 {
    padding-bottom: 1rem;
}

.hero-text {
    padding-bottom: 2rem;

}

.hero-text>p {
    font-weight: 600;
}

.hero-cta {
    padding: 0.8rem 1rem;
    background-color: var(--phanitasPurple);
    /* Use a standout color */
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2rem;
    border: none;
    width: 50%;
    margin-top: 1rem;
    display: block;
    text-align: center;
}

.hero-cta:hover {
    background-color: var(--darkPurple);
    /* Slight hover effect */
}

.hero-img,
.about-us-img,
.baby-img,
.toddler-img,
.class3-4-img {
    border-radius: 2rem;
    box-shadow: 2px 2px 5px var(--phanitasPurple);
}

.hero-text>p:last-of-type {
    padding-bottom: 1rem;
}

.address {
    font-style: normal;
    padding: .8rem 0;
}

.email {
    color: var(--phanitasPurple);
    font-weight: bold;
    text-decoration: none;
}

.phone-number {
    font-weight: bold;
    color: var(--phanitasPurple);
    text-decoration: none;
}


/* About Us Styles */

.long-logo {
    padding-bottom: 2rem;
}

.about-us {
    background-color: var(--phanitasGreen);
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.about-us-container {
    display: flex;
    flex-direction: column;
}

.about-us-card,
.about-us-container>div:last-child {
    flex: 1 1 100%;
}

.about-us-card {
    padding-bottom: 2rem;
}

.about-us-card>p {
    padding-bottom: 1.5rem;
}

.card-img-alt {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: -40px auto 10px auto;
    background: white;
}

/* Why Us */

.our-goals {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;

}

.why-us-title {
    width: 100%;
    padding: 3rem 0;
    text-align: center;
}

.card-container {
    display: grid;
    grid-template-columns: 1fr;
    /* One column layout */
    gap: 5rem;
    padding: 2rem 0 2rem 0;
    justify-items: center;
}

.card-container>h2 {
    text-align: center;
    padding: 0;
}

.our-goals {
    display: flex;
    justify-content: center;
}

.card-text>h3 {
    text-align: center;
}

.card {
    background-color: var(--darkPurple);
    color: var(--palegrey);
    border-radius: 2rem;
    padding: 2rem;
    width: 70%;
}


.card-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: -90px auto 10px auto;
    border: 4px solid var(--deepPurple);
    background: white;
}

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

.card-text>ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.card-text>ul>li {
    padding-top: 0;
    padding-bottom: .5rem;
    margin: 0;
    font-size: 1rem;
}

/* Our Classes/Departments */
.class-card-container {
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.departments {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--phanitasGreen);
    width: 100%;
}

.class-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.class-card {
    border-radius: 2rem;
    border: 2px solid var(--phanitasPurple);
    overflow: hidden;
    background-color: var(--palegrey);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.3rem;
    width: 70%;
    align-self: center;
}

.class-card>h3 {
    text-align: center;
    padding: .8rem 0;
}

.classBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: var(--brightPink);
    /* Use a standout color */
    color: var(--palegrey);
    font-weight: 700;
    text-decoration: none;
    border-radius: 2rem;
    border: none;
    width: 60%;
    margin: 1rem 0;
    margin-top: auto;
}

.classBtn:hover {
    background-color: var(--phanitasPurple);
    /* Slight hover effect */
}

/* Footer */

.footer {
    background-color: var(--deepPurple);
    color: var(--palegrey);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-text {
    width: 100%;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: nowrap;
}

.footer-item>.fa-location-dot {
    padding-top: .2rem;
}


.contact {
    padding-top: 1rem;
    width: 100%;
}

.contact>h4 {
    padding-bottom: .8rem;
}

.contact ul {
    list-style-type: none;
}

.contact ul li {
    padding: .2rem 0;
    margin: 0;
    font-size: 1rem;
}

.contact a {
    color: var(--palegrey);
    text-decoration: none;
}

.icon {
    padding-right: .8rem;
    color: var(--brightGreen);
    font-size: 1.2rem;
    cursor: pointer;
}

.icon:hover {
    color: var(--phanitasGreen)
}

.social {
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    border-radius: .8rem;
    width: 100px;
    height: 100px;
}

.quick-links {
    display: flex;
    width: 80%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
}

.footer ul {
    margin: 0;
    padding: 0;
}

.footer li {
    list-style-type: none;
    margin: 0;
    padding: .5rem 0 0 0;
    font-size: 1rem;
}

.footer-quick-links a {
    color: white;
    text-decoration: none;
    padding: 0.5em;
    position: relative;
    padding-left: 20px;
    cursor: pointer;

}

.footer-quick-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--brightGreen);
}

.copy-right {
    padding: 2rem 0;
}

.social {
    padding: 1rem;
    width: 100%;
}

.social>h4 {
    padding-top: 1rem;
}

.social-icons {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding-top: 1rem;
    justify-content: center;
    padding-bottom: 1rem;
}

.hr {
    border-top: 1px solid var(--brightGreen);
}

/* Contact Styles */

.get-in-touch-intro {
    display: flex;
    flex-direction: column;
    padding: 3rem 1rem;
    width: 100%;

}

.contact-icon {
    background-color: var(--lightGreen);
    color: var(--brightPink);
    padding: .8rem;
    border-radius: .5rem;
    margin-bottom: .5rem;
}

.in-touch-info {
    padding-bottom: 2rem;
}

.our-address>h3 {
    padding-bottom: .5rem;
}

.our-address {
    margin-bottom: 2rem;
}

.map figure {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
}

.map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-img {
    border-radius: 2rem;
    border: 2px solid var(--brightPink);
    box-shadow: 2px 2px 5px var(--phanitasPurple);
    margin: 2rem auto;
}

/* Form Styles */
.contact-form-section {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--lightGreen);
}

.form-container {
    width: 80%;
    margin: 50px auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--palegrey);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

label {
    display: block;
}

input,
textarea {
    width: 100%;
    padding: .8rem;
    margin: 1rem 0;
    border: 3px solid var(--phanitasPurple);
    border-radius: .6rem;
}

input,
textarea:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: border 0.3s, outline 0.3s;
}

input:focus,
textarea:focus {
    border: 3px solid var(--brightPink);
}

input:focus-visible,
textarea:focus-visible {
    outline: 2px dashed var(--brightPink);
}


input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border: none;
    outline: 2px solid var(--brightGreen);
    border-radius: 5px;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border: none;
    outline: 2px solid var(--brightRed);
    border-radius: 5px;
}

.submitBtn {
    margin: 0 auto;
    background-color: var(--phanitasPurple);
    color: var(--palegrey);
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 24px;
    width: 50%;
    border-radius: 1rem;
}

.submitBtn:hover {
    background-color: var(--brightPink);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.hidden {
    display: none;
}

.close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    width: 100% !important;
    overflow: hidden;
}


/* Our School */

.content-wrapper-school {
    width: 100%;
    padding: 0;
    margin: 0;
}

.content-wrapper-school>h1 {
    padding: 2rem;
    text-align: center;
}

.our-schedule,
.our-school,
.our-health {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-schedule {
    background-color: var(--lightGreen);
}

.playground-text>h1 {
    padding: 2rem;
}

.playground-text>h4 {
    padding: 0rem 2rem;
}

.class-play-text>h3 {
    padding: 2rem 2rem 0rem 2rem;
}

.playground-img,
.classroom-img {
    width: 70%;

    border-radius: 1rem;
}

.playground-text,
.class-play-text {
    padding: 2rem;
    margin-top: .2rem;
}

.playground-text>p {
    margin: 1rem 0;
    padding: 0 2rem;
}

.playground-img-wrapper {
    background-color: var(--brightPink);
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.class-play-text>p {
    margin: 1rem 0;
    padding: 0 2rem;
}

.class-img-wrapper {
    padding: 2rem 0;
    background-color: var(--phanitasPurple);
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule {
    margin-bottom: 1rem;
}

.highlight {
    font-weight: bold;
}

.schedule>p {
    padding-bottom: .8rem;
}

.school-calendar {
    padding: 1rem 0rem;
}

.meals-text {
    padding: 2rem;
}

.meal-img-wrapper {
    display: flex;
    justify-content: center;

}

.meals-img {
    width: 70%;
    border-radius: 1rem;
    margin: 2rem 0rem;
}

/* Our Classes Page */

.classes-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.classes-page.content-wrapper {
    width: 90%;
    margin: 0 auto;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.class-box {
    background: var(--phanitasPurple);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}


.class-box:hover {
    transform: translateY(-5px);
}

.class-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.class-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--lightGreen);
    color: var(--deepPurple);
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.class-button:hover {
    background-color: var(--lightGreen);
    color: var(--deepPurple)
}

.note {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: -10px;
}

.section {
    margin-bottom: 40px;
}

ul {
    list-style: disc;
    padding-left: 20px;
}

.support-care {
    margin-top: 3rem
}

.baby-class,
.two-three_class,
.three-four-class {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.baby-text,
.class3-4-text {
    padding-bottom: 2rem;
}

.toddler-img-container,
.class3-4-img-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.class2-3-text {
    padding-bottom: 2rem;
}

.baby-text>h2,
.class2-3-text>h2,
.class3-4-text>h2 {
    padding-top: 1rem;
}

.baby-text>ul>li,
.class2-3-text>ul>li,
.class3-4-text>ul>li {
    padding: .2rem;
}

/* Media Queries */
/* Tablet Styles */
@media screen and (min-width: 676px) {
    .side {
        width: 400px
    }

    .card-card-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }


    .card {

        width: 60%;
    }

    .contact-img {
        width: 70%;
    }


    /* Footer */
    .footer-logo {
        align-self: center;
        margin-bottom: 2rem;
    }

    .footer-text {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .quick-links,
    .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 40%;
    }

    .meals {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }

    .meals>div {
        flex: 1 1 50%
    }

    .meals-text>h3 {
        padding-top: 1rem;
    }

    .baby-class>.content-wrapper,
    .two-three_class>.content-wrapper,
    .three-four-class>.content-wrapper {
        display: flex;
        flex-direction: row;
        gap: 30px
    }

    .baby-text,
    .class2-3-text,
    .class3-4-text {

        flex: 0 0 50%;
    }

    .class-grid {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
}

/* Desktop Styles */
@media screen and (min-width: 1007px) {
    nav {
        display: flex;
        box-shadow: none;
    }

    .nav-header {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .side {
        position: static;
        width: auto;
        height: auto;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        gap: 2rem;
        transform: none !important;
        transition: none;
    }

    .links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.2rem;
    }

    .toggleBtn,
    .close-btn {
        display: none;
    }

    li {
        padding: 0;
    }

    /* Hero Styles */
    .hero-area>.content-wrapper {
        display: flex;
        flex-direction: row;
    }

    .hero-text {
        flex: 0 0 45%;
    }

    .hero-img-container {
        flex-basis: 0 0 45%;
    }

    .class-card-container {
        flex-direction: row;
        max-width: 1200px;
        justify-content: space-between;
        margin: 0 auto;
    }

    .class-card {
        height: 400px;
    }

    .class-img {
        height: 275px;
    }

    .about-us-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        /* allows responsiveness */
        gap: 5%;
        /* or adjust as needed */
    }

    .about-us-card,
    .about-us-container>div:last-child {
        flex: 1 1 45%;
    }

    /* Why Us */

    .card-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        padding: 3rem;

    }

    .card {
        width: 100%
    }

    /* Contact */
    .get-in-touch-intro {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        /* Optional: adds space between elements */
        flex-wrap: wrap;
        /* Optional: handles responsiveness */
        align-items: center;
        padding: 3rem 0;
    }

    .in-touch-info,
    .our-address,
    .contact-details {
        flex: 0 0 30%;
        box-sizing: border-box;
        /* Helps manage padding/border sizing */
    }

    .our-address {
        margin-bottom: 0;
    }

    .our-address,
    .contact-details {
        height: 162px;

    }

    .contact-h3 {
        padding-bottom: .5rem;
    }

    /* Contact Form */

    .form-group {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .form-group label {
        width: 75px;
        /* Adjust based on layout */
        margin-right: 1rem;
        text-align: left;
    }

    .form-group input,
    .form-group textarea {
        display: flex;
        flex: 1;
        margin: 0;
        /* Remove margin to align with label */
    }

    .submitBtn {
        margin-top: 1rem;
    }

    /* Our School */
    .playground,
    .classroom {
        display: flex;
        flex-direction: row;
    }

    .playground {
        margin-top: 2px;
    }

    .playground>div,
    .classroom>div {
        flex: 1 1 50%;
    }

    .playground-img-wrapper,
    .class-img-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .classroom-img,
    .playground-img {
        max-width: 500px;
    }

    .playground-text>p {
        padding-bottom: 1rem;
    }

    /* Single-direction drop shadow */
    hr {
        height: 6px;
        border: 0;
        box-shadow: inset 0 12px 12px -12px var(--phanitasPurple);
    }

    .classroom {
        display: flex;
    }

    .class-img-wrapper {
        padding: 0;
    }

    .classroom>div {
        flex: 1 1 50%
    }

    .three-four-class>.content-wrapper {
        display: flex;
        flex-direction: row;
        gap: 30px
    }

    .class-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

}