/* ═══════════════════════════════════════════════════════════════
   TCC V2 - Premium lock strip (tcc-v2-subscription.js → .tcc-locked-*)
   ═══════════════════════════════════════════════════════════════ */

.tcc-locked-content {
    position: relative;
    margin-top: -1px;   
    background: #fff;   
    overflow: hidden;
}

.tcc-locked-fade {
    height: 32px;
    display:none;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(248, 249, 250, 0) 0%,
        rgba(248, 249, 250, 0.85) 70%,
        var(--tcc-bg-alt, #f8f9fa) 100%
    );
    border-bottom: 1px solid var(--tcc-border-subtle, #f1f3f4);
}

/* ── Premium bar: depth, accent rail, readable type ── */
.tcc-locked-bar {
    position: relative;
    background: #f8fafc;
    color: #000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


.tcc-locked-bar__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction:column;
    align-items: center;
    gap: 18px 28px;
    padding: 18px 22px 20px 26px;
    max-width: 1280px;
    margin: 0 auto;
}

.tcc-locked-bar__icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    color: #333;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
   
    display: flex;
    align-items: center;
    justify-content: center;
}


.tcc-locked-bar__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tcc-locked-bar__title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #000;
}

.tcc-locked-bar__desc {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #666;
    max-width: 52rem;
}

.tcc-locked-bar__desc strong {
    color: #000;
    font-weight: 700;
}

.tcc-locked-bar__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: #051c38;
}



.tcc-locked-bar__btn:focus-visible {
    outline: 2px solid #fde68a;
    outline-offset: 3px;
}

@media (max-width: 720px) {
    .tcc-locked-bar__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 20px 18px 22px;
        gap: 14px;
    }

    .tcc-locked-bar__text {
        align-items: center;
    }

    .tcc-locked-bar__btn {
        width: 100%;
        max-width: 320px;
    }
}
