/* Base CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 203px;
    height: 48px;
    padding: 8px 24px;
    gap: 8px;
    border-radius: 30px;
    border-width: 1px;
    border-style: solid;
    font-family: 'Reddit Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-decoration: none;
    transition: all 300ms ease-out;
    cursor: pointer;
    opacity: 1;
    box-sizing: border-box;
}

/* Light Surface Theme */
.cta-button--light {
    border-color: rgba(244, 244, 244, 1);
    color: rgba(244, 244, 244, 1);
    background: transparent;
}

.cta-button--light:hover {
    background: rgba(244, 244, 244, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 244, 244, 0.15);
}

/* Dark Surface Theme */
.cta-button--dark {
    border-color: rgba(20, 20, 20, 1);
    color: rgba(20, 20, 20, 1);
    background: transparent;
}

.cta-button--dark:hover {
    background: rgba(20, 20, 20, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 20, 20, 0.15);
}

/* Active/Focus States */
.cta-button:active {
    transform: translateY(0);
}

.cta-button:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cta-button {
        width: 137px; /* 35% reduction from 203px (152px - 10%) */
        height: 44px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        width: 137px; /* 35% reduction from 203px (152px - 10%) */
        height: 44px;
        font-size: 14px;
        padding: 8px 16px;
    }
}


