/* SEO Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 2000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Image Aspect Ratio */
.responsive-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

/* Structured Data Hidden Container */
.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;
}

/* SEO Content Blocks */
.seo-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--border);
}

.seo-text h2, .seo-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
