/* =============================================================
   Personal Package — Subscription Promotion Banner Styles
   Shares the unified banner shell with .personal-package-banner
   ============================================================= */

.subscription-promotion-banner {
    background: linear-gradient(
        135deg,
        rgba(15 ,17 ,21,0.5) 0%,
        rgba(211, 255, 1, 0.1) 40%,
        rgba(15 ,17, 21,0.5) 100%
    );
    border: 1px solid var(--yellow-color, #D3FF01);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.subscription-promotion-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}

.subscription-promotion-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.subscription-promotion-banner-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.subscription-promotion-banner-description {
    font-size: .82rem;
    color: #A1A5B7;
    line-height: 1.6;
}

.subscription-promotion-banner-description .accent {
    color: var(--yellow-color, #D3FF01);
    font-weight: 700;
}

.subscription-promotion-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--yellow-color, #D3FF01);
    color: #1A191B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subscription-promotion-banner-icon svg {
    fill: #1A191B;
}

.subscription-promotion-banner-cta {
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: #fff;
    padding: .6rem .9rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: .85rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color .2s, color .2s;
}

.subscription-promotion-banner-cta:hover,
.subscription-promotion-banner-cta:focus {
    border-color: var(--yellow-color, #D3FF01);
    color: var(--yellow-color, #D3FF01) !important;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
}
.subscription-promotion-banner-cta:hover span{
    color: var(--yellow-color, #D3FF01) !important;
}

.subscription-promotion-banner-cta svg {
    flex-shrink: 0;
    stroke:white !important;
}
.subscription-promotion-banner-cta:hover svg{
    stroke: var(--yellow-color, #D3FF01) !important;
}

@media (max-width: 600px) {
    .subscription-promotion-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
        gap: 12px;
    }

    .subscription-promotion-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .subscription-promotion-banner-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .subscription-promotion-banner-icon svg {
        width: 18px;
        height: 18px;
    }

    .subscription-promotion-banner-title {
        font-size: .92rem;
    }

    .subscription-promotion-banner-description {
        font-size: .72rem;
    }

    .subscription-promotion-banner-cta {
        padding: .35rem .8rem;
        font-size: .8rem;
    }
}
