/* Component: YouTube CTA */
.yt-cta { background: #fff; padding: 0 0 48px; }
.yt-cta__box {
    background: var(--purple-section);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    opacity: 0.85;
}
.yt-cta__text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15.2px;
    color: var(--purple-deep);
    margin-bottom: 16px;
}
.yt-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ba2b2e;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.1px;
    padding: 12px 24px;
    border-radius: 9999px;
    transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.25s cubic-bezier(0.25,0.46,0.45,0.94), background-color 0.25s ease;
}
.yt-cta__btn:hover {
    transform: translateY(-2px);
    background-color: #a02025;
    box-shadow: 0 4px 14px -2px rgba(186,43,46,0.3);
}
.yt-cta__btn svg { width: 14px; height: 14px; flex-shrink: 0; }
