/* @font-face {
    font-family: SatoshiBlack;
    src: url('fonts/Satoshi-Black.woff2');
}

@font-face {
    font-family: SatoshiRegular;
    src: url('fonts/Satoshi-Regular.woff2');
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
} */

/* =========================
   BASE (Default = 1000px and below)
   ✅ Whole section centered
   ✅ Order: Kicker -> Logos -> Heading -> Paragraph
========================= */
.tea-section {
    background: #fff;
    padding: 36px 0;
    /* background-image: url(../bucket/home-head-pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom; */
}

.tea-wrap {
    max-width: 900px;
    /* centered block width */
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    /* ✅ center whole section */
    text-align: center;
    /* ✅ center text */
    gap: 16px;
}

/* content */
.tea-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* ✅ center inside */
    gap: 12px;
}

.tea-title,
.tea-desc {
    margin: 0;
}

/* kicker */
.tea-kicker {
    font-family: SatoshiBlack;
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: #111;
    display: inline-block;
    padding: 0px 10px 6px 10px;
    border-bottom: 2px solid #97762D;
    margin-bottom: 16px;
}

/* shared logos style */
.tea-logos {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    /* ✅ centered logos */
}

.tea-logo {
    /* width: 150px; */
    width: 100%;
    height: auto;
    display: block;
}

/* heading */
.tea-title {
    font-family: SatoshiBlack;
    font-size: 26px;
    line-height: 1.1;
    color: #111;
}

/* paragraph */
.tea-desc {
    font-family: SatoshiRegular;
    font-size: 18px;
    line-height: 1.6;
    /* color: rgba(17, 17, 17, .72); */
    color: #000;
    max-width: 560px;
}

/* =========================
   Two logo blocks:
   - side = desktop left
   - under = mobile under kicker
========================= */
.tea-logos--side {
    display: none;
}

.tea-logos--under {
    display: flex;
}

/* Very small phones: stack logos */
@media (max-width: 420px) {
    .tea-logos--under {
        /* flex-direction: column; */
        align-items: center;
        gap: 14px;
    }

    /* .tea-logo {
        width: 180px;
    } */
}

@media (min-width: 425px) {
    .tea-logo {
        width: 380px;
    }
}

/* =========================
   DESKTOP (min-width: 1000px)
   ✅ Side-by-side layout
   ✅ Logos left, content right
========================= */
@media (min-width: 1000px) {

    .tea-logos {
        margin-bottom: unset;
    }

    .tea-section {
        padding: 60px 0;
    }

    .tea-wrap {
        max-width: 1200px;
        padding: 0 40px;

        flex-direction: row;
        align-items: center;
        justify-content: center;
        /* keeps whole section centered */
        text-align: left;
        gap: 100px;
    }

    .tea-content {
        align-items: flex-start;
    }

    .tea-logos--side {
        display: flex;
        gap: 44px;
        align-items: center;
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .tea-logos--under {
        display: none;
    }

    /* .tea-logo {
        width: 200px;
    } */

    .tea-title {
        font-size: 40px;
    }

    .tea-kicker {
        padding: 0px 40px 6px 0;
    }
}

@media (min-width: 1600px) {
    .tea-title {
        font-size: 40px;
    }
}