/* ========================================
   SEJARAH PAGE STYLES
   Simple, Formal & Modern Design
   ======================================== */

.sejarah-section {
    padding: 4rem 0;
    background: #ffffff;
    min-height: 60vh;
}

.sejarah-content {
    max-width: 100%;
}

/* Highlights Section */
.sejarah-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(45, 90, 156, 0.05) 0%, rgba(45, 90, 156, 0.02) 100%);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #2d5a9c;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(45, 90, 156, 0.1) 0%, rgba(45, 90, 156, 0.05) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #2d5a9c;
}

.highlight-content {
    flex: 1;
}

.highlight-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.highlight-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

/* Main Content */
.sejarah-text {
    margin-bottom: 3rem;
}

.sejarah-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
    margin: 0 0 1.5rem 0;
    padding: 0;
    word-spacing: 0.1em;
    letter-spacing: 0.01em;
}

.sejarah-paragraph:last-child {
    margin-bottom: 0;
}

/* Source Section */
.sejarah-source {
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 4px solid #2d5a9c;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.source-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.source-text {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Empty State */
.sejarah-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 2px dashed #e5e7eb;
}

.sejarah-empty i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.sejarah-empty p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design - Tablet */
@media (max-width: 991.98px) {
    .sejarah-section {
        padding: 3rem 0;
    }

    .sejarah-highlights {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .highlight-card {
        padding: 1.25rem;
    }

    .sejarah-text {
        margin-bottom: 2.5rem;
    }

    .sejarah-paragraph {
        font-size: 1rem;
        line-height: 1.75;
    }

    .sejarah-source {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767.98px) {
    .sejarah-section {
        padding: 2.5rem 0;
    }

    .sejarah-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .highlight-card {
        padding: 1.125rem;
        gap: 0.875rem;
    }

    .highlight-icon {
        width: 48px;
        height: 48px;
    }

    .highlight-icon i {
        font-size: 1.25rem;
    }

    .highlight-label {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }

    .highlight-value {
        font-size: 1.1rem;
    }

    .sejarah-text {
        margin-bottom: 2rem;
    }

    .sejarah-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    .sejarah-source {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .source-label {
        font-size: 0.8rem;
    }

    .source-text {
        font-size: 0.9rem;
    }
}

