/* PAGE ENI */

.eni-page {
    background: #ffffff;
}

/* HERO */

.eni-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid #e5e7eb;
}

.eni-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.eni-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 12px;
}

.eni-hero-text h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.eni-intro {
    color: #4b5563;
    line-height: 1.7;
    max-width: 520px;
}

.eni-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e5e7eb;
}

/* SECTIONS */

.eni-section {
    padding: 80px 0;
}

.eni-section-alt {
    background: #f9fafb;
}

.eni-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.eni-split.reverse {
    direction: rtl;
}

.eni-split.reverse * {
    direction: ltr;
}

.eni-text h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #111827;
}

.eni-text p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 12px;
}

.eni-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e5e7eb;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .eni-hero-grid,
    .eni-split {
        grid-template-columns: 1fr;
    }

    .eni-split.reverse {
        direction: ltr;
    }
}