/* ===============================
   SEJARAH SECTION
================================ */
.sejarah-section {
    padding: 120px 20px 90px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.sejarah-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===============================
   HEADER
================================ */
.sejarah-header {
    text-align: center;
    margin-bottom: 60px;
}

.sejarah-badge {
    display: inline-block;
    background: #1e3a8a;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.sejarah-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.sejarah-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    margin: 18px auto 22px;
    border-radius: 2px;
}

/* ===============================
   CARD
================================ */
.sejarah-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    padding: 42px;
}

.sejarah-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: flex-start;
}

/* ===============================
   IMAGE
================================ */
.sejarah-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.sejarah-image {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    transition: transform .4s ease;
}

.image-frame:hover .sejarah-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0),
        rgba(0,0,0,0.35)
    );
}

.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    top: 14px;
    left: 14px;
    z-index: -1;
}

/* ===============================
   TEXT CONTENT
================================ */
.sejarah-text {
    font-size: 16px;
    line-height: 1.9;
    color: #374151;
}

.history-icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.history-icon {
    width: 22px;
    height: 22px;
    color: #2563eb;
}

.history-label {
    font-size: 15px;
    color: #1f2937;
}

.history-content p {
    margin-bottom: 18px;
    text-align: justify;
}

/* ===============================
   EMPTY STATE
================================ */
.empty-state {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 18px;
    text-align: center;
    color: #6b7280;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.empty-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: #9ca3af;
}

.empty-text {
    font-size: 16px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .sejarah-content {
        grid-template-columns: 1fr;
    }

    .image-decoration {
        display: none;
    }
}

@media (max-width: 640px) {
    .sejarah-section {
        padding: 90px 16px 70px;
    }

    .sejarah-title {
        font-size: 26px;
    }

    .sejarah-card {
        padding: 28px;
    }
}
