/* ===================================================
   ABOUT PAGE
   =================================================== */

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
}

.hero-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-md);
    filter: contrast(0.9);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    pointer-events: none;
}

/* Hero heading */
.hero-text h1 {
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: var(--space-md);
}

/* Section headings */
.section h2 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-regular);
    line-height: 18px;
    letter-spacing: 0.4px;
    margin-bottom: var(--space-md);
}

/* Hero paragraphs */
.hero-text p {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-light);
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

/* Section item headings */
.section-item h3 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
    color: var(--color-text-primary);
}

/* Section item text */
.section-item p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-light);
    line-height: 1.5;
    color: var(--color-text-tertiary);
}

.hero-text a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-text a:hover {
    color: var(--color-accent);
}

/* ===== SECTIONS ===== */
.sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.section-item {
    margin-bottom: var(--space-md);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .sections {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
}

@media (max-width: 767px) {
    .hero {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        margin-bottom: var(--space-2xl);
    }

    .hero-image {
        aspect-ratio: 5/4;
    }

    .sections {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
}

@media (max-width: 479px) {
    .hero {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        margin-top: 18px;
        margin-bottom: var(--space-2xl);
    }

    .hero-image {
        aspect-ratio: 5/4;
    }

    .sections {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}
