/* ==========================================
   AI Page
   ========================================== */

/* ---------- Hero ---------- */

.page-hero {
    background-image:
        linear-gradient(
            180deg,
            rgba(250, 244, 238, 0.12),
            rgba(250, 244, 238, 0.68)
        ),
        var(--page-image);
    background-size: cover;
    background-position: 70% 20%;
    background-repeat: no-repeat;
}

/* ---------- Intro ---------- */

#intro .editorial-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

#intro .editorial-grid img {
    height: 520px;
    object-fit: cover;
}

#intro .editorial-copy p + p {
    margin-top: 24px;
}

/* ---------- Interests ---------- */

.interest-list {
    display: flex;
    flex-direction: column;
}

.interest-item {
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.25s ease;
}

.interest-item:hover {
    padding-left: 12px;
}

.interest-content {
    max-width: 900px;
}

.interest-content h3 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 0.95;
    font-weight: 500;
    color: var(--ink);
}

.interest-content p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.7;
}

/* ---------- Mobile ---------- */

@media (max-width: 980px) {
    #intro .editorial-grid {
        grid-template-columns: 1fr;
    }

    #intro .editorial-grid img {
        height: 420px;
    }

    .interest-content h3 {
        font-size: 36px;
    }

    .interest-content p {
        font-size: 18px;
    }
}