/* Free Trial Banner */
.ftb {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.ftb__row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.ftb--promotional {
    border-left: 4px solid #0079AD;
}

.ftb--active {
    border-left: 4px solid #15803d;
}

.ftb--ended {
    border-left: 4px solid #f59e0b;
}

.ftb__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftb__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ftb__heading {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
}

.ftb__subtext {
    font-size: 14px;
    color: #6b7280;
}

.ftb__chip {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

.ftb--active .ftb__chip {
    background: #dcfce7;
    color: #15803d;
}

.ftb__action {
    flex-shrink: 0;
}

.ftb__upgrade-btn {
    background-color: #f59e0b !important;
    color: white !important;
}

.ftb__upgrade-btn:hover {
    background-color: #d97706 !important;
}

@media (max-width: 639px) {
    .ftb__row {
        flex-direction: column;
        text-align: center;
    }

    .ftb__icon {
        margin: 0 auto;
    }

    .ftb__chip {
        margin: 0 auto;
    }

    .ftb__action {
        margin: 0 auto;
    }
}
