/* Visual-only "Unlock <product>" banner shown at the top of gated dashboard pages. */

.pl-unlock-banner[hidden] {
    display: none !important;
}

.pl-unlock-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 18px 0 0;
    padding: 18px 22px;
    border: 1px solid #1f1f1f;
    background: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pl-unlock-banner-text {
    flex: 1 1 auto;
    min-width: 0;
}

.pl-unlock-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6f6f6f;
    margin-bottom: 8px;
}

.pl-unlock-banner-eyebrow::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #0e0e0e;
}

.pl-unlock-banner-text h2 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #0e0e0e;
}

.pl-unlock-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6f6f6f;
}

.pl-unlock-banner-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid #0e0e0e;
    background: #0e0e0e;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 120ms ease, color 120ms ease;
}

.pl-unlock-banner-btn:hover {
    background: #ffffff;
    color: #0e0e0e;
}

@media (max-width: 640px) {
    .pl-unlock-banner {
        flex-direction: column;
        align-items: flex-start;
        margin: 14px 0 0;
    }
    .pl-unlock-banner-btn {
        width: 100%;
    }
}
