.affiliate-cta {
    margin: 24px 0;
    padding: 24px;
    background: linear-gradient(135deg, #e7f3ff 0%, #f0f8ff 100%);
    border: 1px solid #c8e1ff;
    border-radius: 12px;
}

.affiliate-cta__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.affiliate-cta__logo {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.affiliate-cta__text {
    flex: 1;
    min-width: 0;
}

.affiliate-cta__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.affiliate-cta__description {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.affiliate-cta__button {
    flex-shrink: 0;
    display: inline-block;
    padding: 10px 24px;
    background: #0088cc;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.affiliate-cta__button:hover {
    background: #006699;
    color: #fff;
}

.affiliate-cta__disclosure {
    margin: 12px 0 0;
    font-size: 11px;
    line-height: 1.4;
    color: #888;
}

@media (max-width: 600px) {
    .affiliate-cta__content {
        flex-direction: column;
        text-align: center;
    }

    .affiliate-cta__button {
        width: 100%;
        text-align: center;
    }
}
