/* Halaman Sejarah — foto di atas, teks justify */
.sejarah-section {
    position: relative;
}

.sejarah-section--alt {
    background: #f7f7f7;
}

.sejarah-section-title {
    margin-bottom: 36px;
}

.sejarah-section-title h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--theme-primary, #006838);
    margin: 0;
}

.sejarah-photo-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.sejarah-photo-count-1 {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sejarah-photo-count-2 {
    grid-template-columns: repeat(2, 1fr);
}

.sejarah-photo-count-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sejarah-photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 40, 20, 0.1);
    aspect-ratio: 4 / 3;
    background: #e8efe9;
}

.sejarah-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.sejarah-photo-item:hover img {
    transform: scale(1.04);
}

.sejarah-photo-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 60, 30, 0.18) 100%);
    pointer-events: none;
}

.sejarah-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.85;
    color: #444;
    font-size: 16px;
}

.sejarah-content p {
    margin-bottom: 1em;
    text-align: justify;
}

.sejarah-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .sejarah-photo-count-2,
    .sejarah-photo-count-3 {
        grid-template-columns: 1fr;
    }

    .sejarah-photo-item {
        aspect-ratio: 16 / 10;
    }

    .sejarah-content {
        font-size: 15px;
        line-height: 1.75;
    }
}
