#mission-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

#mission-list i {
  font-size: 1.3rem;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  color: #f3c614;
}

#mission-list span {
  flex: 1;
  line-height: 1.6;
  font-weight: 500;
  display: inline-block;
}

#vision-box {
  padding: 20px;
  border: 2px solid #dad1e5;
  border-radius: 10px;
  background-color: #efeefc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-top: 15px;
}

#vision-box h3 {
  font-weight: 500;
}

#vision-box p {
  font-weight: 500;
  line-height: 1.7;
}
#mission-box, #vision-box {
  padding: 20px;
  border: 2px solid #dad1e5;
  border-radius: 10px;
  background-color: #efeefc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-top: 15px;
}

#mission-box h3,
#vision-box h3 {
  font-weight: 500;
}

#vision-text {
  font-weight: bold;
  line-height: 1.7;
}
.article-section {
  padding: 60px 0;
}

.article-card {
  position: relative;
  height: 300px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.4s ease;
  display: flex;
  align-items: flex-end;
}

.article-card:hover {
  transform: scale(1.05);
}

.article-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
  z-index: 1;
}

.article-card:hover .article-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.article-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
  color: white;
  text-align: center;
}

.article-title {
  color: black;
  -webkit-text-stroke: 1px white; /* Garis tepi putih */
  font-weight: bold;
}

.title {
  font-size: 28px;
  font-weight: bold;
  font-family: Helvetica, sans-serif;
  color: white; /* Warna teks putih agar terlihat di overlay */
  -webkit-text-stroke: 0.01px rgb(255, 255, 255); /* Garis tepi tipis jika diperlukan */
  /* Anda bisa mengatur ulang -webkit-text-stroke atau menghapusnya jika tidak yakin */
  /* Coba dengan hanya color: white; terlebih dahulu */
}

@media (max-width: 767.98px) { /* Ini adalah breakpoint default Bootstrap untuk layar kecil ke bawah */
  .col-sm-6 { /* Kelas col-sm-6 akan aktif pada breakpoint ini dan di atasnya */
      flex: 0 0 auto;
      width: 50%; /* Memastikan setiap kolom mengambil 50% lebar wadah */
  }
  .title {
    font-size: 20px; /* Ukuran font yang lebih kecil untuk mobile */
  }
}

/* Jika Anda menggunakan col-12 untuk layar sangat kecil */
@media (max-width: 575.98px) { /* Ini adalah breakpoint default Bootstrap untuk layar extra small ke bawah */
  .col-12 {
      flex: 0 0 auto;
      width: 100%; /* Memastikan setiap kolom mengambil 100% lebar wadah */
  }
  .title {
    font-size: 18px; /* Bahkan lebih kecil untuk layar super kecil */
  }
}

/* Pastikan section-title dan section-description-text juga responsif jika diperlukan */
/*.section-title h2 {*/
    /*font-size: px; */
/*}*/

.section-description-text {
    font-size: 16px; /* Contoh */
}

@media (max-width: 767.98px) {
    .section-title h2 {
        font-size: 14px; /* Ukuran lebih kecil di mobile */
    }
    .section-description-text {
        font-size: 14px; /* Ukuran lebih kecil di mobile */
    }
}
