/* Hapus style yang ada dan ganti dengan: */
body {
  background-color: var(--primary-bg);
  color: var(--text-primary);
}
.text-field {
  width: 80%;
  text-align: justify;
}


/* Hero section exception */
.hero-section {
  background-color: transparent;
}

/* Running text section */
.latest-articles-running-text {
  background-color: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Section spacing */
section + section {
  margin-top: 0;
}

/* Global Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bs-dark);
    
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--bs-gray-600);
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.text-center .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--bs-primary);
}

/* Common Card Styles */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Common Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
}

/* Common Image Styles */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 10px !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Common Animation Classes */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Common Spacing */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Common Container */
.container {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Common Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0.5rem;
}

@media (max-width: 991.98px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Common Background Colors */
.bg-light {
    background-color: var(--bs-light) !important;
}

/* Common Text Colors */
.text-center {
    text-align: center !important;
}

.text-muted {
    color: var(--bs-gray-600) !important;
}

/* Common Flex Utilities */
.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

/* Common Position Utilities */
.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

/* Common Overflow */
.overflow-hidden {
    overflow: hidden !important;
}