/* Global helpers extracted from inline <style> blocks.
   Loaded once per page from site.layouts.assets so individual page
   templates and partials don't need to duplicate these rules. */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 8px;
    z-index: 10000;
    padding: 8px 16px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    border-radius: 0 0 6px 6px;
    font-weight: 600;
    transition: top 0.15s ease-in-out;
}

.skip-to-content:focus,
.skip-to-content:focus-visible {
    top: 0;
    outline: 2px solid #16a34a;
    outline-offset: 2px;
    color: #fff;
}

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

.blinking-circle {
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: #ee161f;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50%      { opacity: 1; }
}
