/**
 * Wrestler Era Links Styles
 * Upload this CSS file to your extendable-child theme directory
 */

/* Label + links flex row layout */
.wrestler-era-links-row {
    line-height: 1.2;
}
.wrestler-era-links-label {
    white-space: nowrap;
    margin-right: 0.35em;
    color: #CEE5F2;
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 400;
    font-size: 15.3986px;
}


/* Era Links */
.era-link {
    color: #E6C97F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.era-link:hover {
    color: #B6C0EB;
}

.era-link:focus {
    outline: 2px solid #E6C97F;
    outline-offset: 2px;
    border-radius: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .era-link {
        color: #FFFFFF;
    }
    .era-link:hover {
        color: #E6C97F;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .era-link {
        transition: none;
    }
}

@media (max-width: 768px) {
    .wrestler-era-links-label,
    .wrestler-era-links-values {
        display: block;
    }
    .wrestler-era-links-label {
        margin-bottom: 0.25em;
    }
}

@media (max-width: 480px) {
    .wrestler-era-links-label {
        font-size: 18px;
    }
}