/* ====================================================
   Category Hero Banner — figma-aligned
   Mobile : title → desc → bullets → CTA
   Desktop: text (left, 55%) + bullets in single row
   ==================================================== */

.mi-cat-hero {
    background:#FFE6EE;
    padding: 30px 0;
    overflow: hidden;
}

.mi-cat-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mi-cat-hero__text {
    display: flex;
    flex-direction: column;
}

/* ── Title (all dark, no color split) ─────────────────── */
.mi-cat-hero__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: #16162a;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.mi-cat-hero__title em {
    font-style: normal;
    color: inherit;
}

/* ── Description ──────────────────────────────────────── */
.mi-cat-hero__desc {
    font-size: 14px;
    color: #5a5a6e;
    margin: 0 0 18px;
    line-height: 1.55;
}

/* ── Bullets ──────────────────────────────────────────── */
.mi-cat-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mi-cat-hero__bullet:last-child{
    padding-bottom: 0;
}
.mi-cat-hero__bullet:first-child{
    padding-top: 0;
}

.mi-cat-hero__bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 115, 150, 0.22);
}

.mi-cat-hero__bullet:last-child {
    border-bottom: none;
}

.mi-cat-hero__bullet-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #FF7396;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 115, 150, 0.3);
}

.mi-cat-hero__bullet-icon svg {
    width: 18px;
    height: 18px;
}

.mi-cat-hero__bullet-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.mi-cat-hero__bullet-title {
    font-size: 14px;
    font-weight: 600;
    color: #16162a;
}

.mi-cat-hero__bullet-sub {
    font-size: 12px;
    color: #6b6b7a;
    margin-top: 2px;
}

/* ── CTA button (mobile: full-width pink pill) ────────── */
.mi-cat-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FF7396;
    color: #fff;
    border-radius: 200px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    width: 100%;
    box-shadow: 0 6px 18px rgba(255, 115, 150, 0.35);
    border: 2px solid #E6336A;
    box-sizing: border-box;
    margin-top: 4px;
}

.mi-cat-hero__btn:hover,
.mi-cat-hero__btn:focus {
    background: #e6506f;
    color: #fff;
}

.mi-cat-hero__btn-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.mi-cat-hero__btn-arrow {
    width: 16px;
    height: 16px;
    color: #fff;
    margin-left: 2px;
}

/* ============================================
   Tablet / Desktop
   ============================================ */
@media (min-width: 768px) {
    .mi-cat-hero__desc{
        max-width: 75%;
    }
    .mi-cat-hero {
        padding: 36px 0;
    }

    .mi-cat-hero__inner {
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .mi-cat-hero__text {
        flex: 1 1 55%;
    }



    .mi-cat-hero__title {
        font-size: 34px;
    }

    .mi-cat-hero__desc {
        font-size: 15px;
        margin-bottom: 22px;
    }

    /* Bullets in single row across the bottom (per figma desktop) */
    .mi-cat-hero__bullets {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
    }

    .mi-cat-hero__bullet {
        flex: 0 1 auto;
        padding: 0 22px;
        border-bottom: none;
        border-left: 1px solid rgba(255, 115, 150, 0.32);
    }

    .mi-cat-hero__bullet:first-child {
        border-left: none;
        padding-left: 0;
    }

    .mi-cat-hero__bullet:last-child {
        padding-right: 0;
    }

    .mi-cat-hero__bullet-icon {
        width: 44px;
        height: 44px;
    }

    .mi-cat-hero__bullet-icon svg {
        width: 20px;
        height: 20px;
    }

    /* CTA hidden on desktop per figma */
    .mi-cat-hero__btn {
        display: none;
    }
}

@media (min-width: 1024px) {
    .mi-cat-hero {
        padding: 48px 0;
    }

    .mi-cat-hero__title {
        font-size: 42px;
    }

    .mi-cat-hero__bullet-title {
        font-size: 15px;
    }

    .mi-cat-hero__bullet-sub {
        font-size: 13px;
    }
}

@media (max-width: 480px){
    .mi-cat-hero__bullet-icon{
        width: 30px;
        height: 30px;
    }
    .mi-cat-hero__bullet-icon svg {
        width: 16px;
        height: 16px;
    }
    .mi-cat-hero__bullet-title{
        font-size: 12px;
    }
    .mi-cat-hero__bullet-sub{
        font-size: 11px;
    }
    .mi-cat-hero__bullets{
        display: none;
    }
    .mi-cat-hero__desc{
        margin-bottom: 0;
    }
}
