/* btn-play-icon — site-wide CTA button with inset white circle + fuchsia play triangle.
   Single source of truth. Do NOT duplicate in inline styles. Link this file on every page. */

.btn-play-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 58px 14px 24px;
    min-height: 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #fff;
    background: #fa00fa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.2;
}

.btn-play-icon:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* White circle — vertically centered, inset from right edge with equal padding */
.btn-play-icon::before {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Fuchsia play triangle — same position/size as circle, clip-path creates centered triangle */
.btn-play-icon::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fa00fa;
    clip-path: polygon(42% 28%, 42% 72%, 68% 50%);
    z-index: 1;
}

/* ===== Responsive: tablet ===== */
@media (max-width: 768px) {
    .btn-play-icon {
        padding: 12px 50px 12px 20px;
        min-height: 44px;
        font-size: 0.9rem;
    }
    .btn-play-icon::before {
        right: 6px;
        width: 32px;
        height: 32px;
    }
    .btn-play-icon::after {
        right: 6px;
        width: 32px;
        height: 32px;
    }
}

/* ===== Responsive: mobile ===== */
@media (max-width: 480px) {
    .btn-play-icon {
        padding: 11px 44px 11px 16px;
        min-height: 40px;
        font-size: 0.85rem;
    }
    .btn-play-icon::before {
        right: 5px;
        width: 28px;
        height: 28px;
    }
    .btn-play-icon::after {
        right: 5px;
        width: 28px;
        height: 28px;
    }
}
