.preferred-sources-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: #f0f0f1;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    flex-wrap: wrap;
}

.preferred-sources-cta-banner[data-preferred-sources-cta-hidden="true"] {
    display: none;
}

.preferred-sources-cta-banner__content {
    flex: 1 1 auto;
    min-width: 200px;
}

.preferred-sources-cta-banner__actions {
    display: flex;
    gap: 0.5rem;
    flex: 0 0 auto;
    flex-wrap: wrap;
}

.preferred-sources-cta-banner__button {
    padding: 0.5rem 1rem;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    background: #fff;
    color: #2c3338;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.preferred-sources-cta-banner__button:hover {
    background: #f6f7f7;
    border-color: #8c8f94;
}

.preferred-sources-cta-banner__button--add {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.preferred-sources-cta-banner__button--add:hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

@media (max-width: 480px) {
    .preferred-sources-cta-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .preferred-sources-cta-banner__actions {
        justify-content: stretch;
    }

    .preferred-sources-cta-banner__button {
        flex: 1;
        text-align: center;
    }
}
