/* ====== Shared Job Styles ====== */

/* ====== CSS Variables ====== */
:root {
    --red: oklch(57.7% 0.245 27.325);
    --red-100: oklch(93.6% 0.032 17.717);
    --gray-600: oklch(44.6% 0.03 256.802);
    --gray-50: oklch(98.5% 0.002 247.839);
    --gray-800: oklch(27.8% 0.033 256.848);
}

/* ====== Base Styles ====== */
*, *::before, *::after {
    box-sizing: border-box;
}

section {
    margin: 0 auto;
}

/* ====== Accessibility ====== */
.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;
}

/* ====== Layout Containers ====== */
.container {
    margin-inline: auto;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

/* ====== Hero Section ====== */
.hero {
    background: linear-gradient(135deg, var(--red) 0%, oklch(52% 0.22 27.325) 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
}

.hero .intro {
    padding-inline: 2rem;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .hero .intro {
        padding-inline: 1.25rem;
    }
}

.hero h1 {
    text-transform: uppercase;
    text-align: center;
    color: white;
    font-size: 3rem;
    line-height: 1;
    margin: 0;
    padding-bottom: 3rem;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.hero h2 {
    color: #fff;
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
}

.hero p {
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin: 0 0 2rem 0;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.625;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== Hero Stats (Archive only) ====== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
}

.stat {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}