

/* LAYOUT */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    position: relative;
    z-index: 1;
    padding: 0 2rem 3rem;
    scroll-margin-top: 70px;
}

.article {
    max-width: 720px;
}

.section h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #8a9a7a;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.page-header {
    padding: 32px 2rem 0;
    margin-bottom: 48px;
}

.page-header h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: #1e2e14;
    line-height: 1.15;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #4a6a4a;
    line-height: 1.6;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: #3d5c3d;
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus {
    top: 52px;
}