/* Utility Classes - Extracted from styles.css and components.css */

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.full-width {
    width: 100%;
}

/* Display Utilities */
.is-hidden {
    display: none !important;
}

/* Accessibility Utilities */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: var(--space-4);
    top: var(--space-4);
    width: auto;
    height: auto;
    padding: var(--space-2) var(--space-3);
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    z-index: 2000;
}

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

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Adjustments for Utilities */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}