/* Horizontal Promo Trio Banners (Aspect-Ratio Fitted - Zero Text Cutoff / Cropping) */
.tb-trio-section {
    margin: 1.25rem 0 1.75rem 0;
    width: 100%;
}

.tb-trio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Base Card Styling */
.tb-trio-card {
    border-radius: 1.15rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-sizing: border-box;
    cursor: default;
    pointer-events: none;
}

/* Width & Aspect Ratios matching exact banner image proportions (NO CROPPING) */
.tb-trio-card.card-1 {
    flex: 0 0 38.5%;
    max-width: 38.5%;
    aspect-ratio: 1.85 / 1;
    background: #fff0f3;
}

.tb-trio-card.card-2 {
    flex: 0 0 38.5%;
    max-width: 38.5%;
    aspect-ratio: 1.85 / 1;
    background: #eff6ff;
}

.tb-trio-card.card-3 {
    flex: 0 0 20.5%;
    max-width: 20.5%;
    aspect-ratio: 1 / 1;
    background: #e6f4ea;
}

.tb-trio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    cursor: default;
    pointer-events: none;
}

.tb-trio-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Full image visible with ZERO text cutoff */
    display: block;
    border-radius: 1.15rem;
    cursor: default;
    pointer-events: none;
}

/* Fallback Demo Cards */
.tb-trio-fallback {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 1.15rem;
    cursor: default;
    pointer-events: none;
}

.fallback-pink {
    background: linear-gradient(135deg, #fff0f3 0%, #ffe4e6 100%);
    color: #0f172a;
}

.fallback-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #0f172a;
}

.fallback-green {
    background: linear-gradient(135deg, #e6f4ea 0%, #d1e7dd 100%);
    color: #0f172a;
}

.tb-trio-fallback-text h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.tb-trio-price-tag {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}

.tb-trio-price-tag span {
    font-size: 1.6rem;
    font-weight: 900;
    color: #D91B24;
    font-family: 'Outfit', sans-serif;
}

.tb-green-pill {
    display: inline-block;
    background: #16a34a;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.12rem 0.5rem;
    border-radius: 9999px;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.tb-trio-fallback-graphics {
    font-size: 3.2rem;
    color: rgba(15, 23, 42, 0.08);
    position: absolute;
    right: 0.65rem;
    bottom: 0.35rem;
    transform: rotate(-10deg);
    pointer-events: none;
}

/* Mobile & Tablet Responsiveness - Strict 3 Cards Side-by-Side Without Scrollbar */
@media (max-width: 768px) {
    .tb-trio-section {
        margin: 0.85rem 0 1.25rem 0;
    }
    .tb-trio-container {
        gap: 0.3rem;
        overflow: hidden;
    }
    .tb-trio-card {
        border-radius: 0.65rem;
    }
    .tb-trio-img {
        border-radius: 0.65rem;
    }
    .tb-trio-card.card-1 {
        flex: 0 0 38.5%;
        max-width: 38.5%;
        aspect-ratio: 1.85 / 1;
    }
    .tb-trio-card.card-2 {
        flex: 0 0 38.5%;
        max-width: 38.5%;
        aspect-ratio: 1.85 / 1;
    }
    .tb-trio-card.card-3 {
        flex: 0 0 20.5%;
        max-width: 20.5%;
        aspect-ratio: 1 / 1;
    }
    .tb-trio-fallback {
        padding: 0.35rem 0.45rem;
        border-radius: 0.65rem;
    }
    .tb-trio-fallback-text h4 {
        font-size: 0.62rem;
        line-height: 1.15;
    }
    .tb-trio-price-tag {
        margin-top: 0.1rem;
        font-size: 0.5rem;
    }
    .tb-trio-price-tag span {
        font-size: 0.95rem;
    }
    .tb-green-pill {
        font-size: 0.42rem;
        padding: 0.05rem 0.2rem;
        margin-bottom: 0.1rem;
    }
    .tb-trio-fallback-graphics {
        font-size: 1.5rem;
        right: 0.2rem;
        bottom: 0.1rem;
    }
}
