/**
 * GC Theme — Screen Reader Utility
 *
 * Visually hides content while keeping it accessible
 * to screen readers. Standard WordPress pattern.
 *
 * @package GC_Theme
 */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/**
 * Skip-to-content link
 *
 * Visible only when focused via keyboard (Tab). Lets keyboard and
 * screen-reader users jump past the header/nav straight to <main id="gc-main">.
 * WCAG 2.4.1 (Bypass Blocks).
 */
.gc-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    padding: 12px 20px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 6px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.gc-skip-link:focus {
    left: 0;
    outline: 2px solid #0284c7;
    outline-offset: 2px;
}
