/* Shared accessibility utilities */

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    background: var(--accent-primary, #1E8449);
    color: #fff;
    padding: 12px 24px;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Legal consent checkbox */
.legal-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-secondary, #475569);
}
.legal-consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--accent-primary, #1a7a4c);
}
.legal-consent label {
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}
.legal-consent a {
    color: var(--accent-primary, #1a7a4c);
}
