/* Artikel Style --------------- Start */
/* Section styling */
.section {
    /* padding: 10px 0px; */
    text-align: center;
}

.section h2 {
    font-size: px;
    margin-bottom: 20px;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service {
  /* background-color: #a3daff; */
  flex: 1;
  min-width: 150px;
  max-width: 250px;
  margin: 20px;
  /* padding: 50px 20px; */
}
.service-content {
  background-color: #bae3ff;
  height: auto;
  padding: 20px 20px;
  border-radius: 20px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.service-content:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.service-content h3 {
  font-size: clamp(12px, 1vw, 24px);
}
.service p {
  font-size: clamp(5px, 1vw, 12px);
}

.button-service {
  display: inline-block;
  padding: 10px;
  border-radius: 20px;
  background-color: white;
  text-decoration: none;
  color: black;
  font-size: clamp(12px, 1.5vw, 24px);
}
.button-service:hover {
  padding: 10px;
  border-radius: 20px;
  background-color: #6ec5ff;
  color: #fff;
  /* margin-bottom: 10px; */
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease;
  cursor: pointer;
  
}

.populer-post {
  position: relative;
  padding-top: 10px; /* Menambahkan sedikit ruang antara garis dan konten */
  line-height: 1em;
}
.populer-post p {
  display: -webkit-box; /* Membuat elemen menjadi kotak fleksibel berbasis WebKit */
  -webkit-box-orient: vertical; /* Orientasi kotak fleksibel secara vertikal */
  -webkit-line-clamp: 5; /* Batasi jumlah baris teks */
  overflow: hidden; /* Sembunyikan teks yang melebihi batas */
  text-overflow: ellipsis; /* Tampilkan elipsis untuk teks yang terpotong */
  line-height: 1; /* Jarak antar baris */
  max-height: 5em; /* Sesuaikan dengan line-height dan jumlah baris */
}

.populer-post::before {
  content: '';
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; /* Ketebalan garis */
  background: linear-gradient(to right, #007bff 25%, black 25%);
}

article {
  position: relative;
  /* background-color: rgb(255, 255, 255); */
  max-width: 80%px; /* Menentukan lebar maksimum artikel */
  margin-top: -200px;
  margin-bottom: -150px;
  /* padding: 200px 50px 50px 50px; */
  text-align: left; /* Mengatur perataan teks ke kiri */
  margin: -100px auto;
}
article img {
  width: 100%;
}
article h1 {
  font-family: 'Roboto Condensed', sans-serif;
  /* font-family: 'Georgia', serif; */

  font-size: clamp(16px, 1vw + 1rem, 36px);
  font-weight: bold;
  line-height: 1.3;
  color: #333333;

  /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
  margin-top: 0; /* Menghilangkan margin atas untuk judul */
  margin-bottom: 15px; /* Menambahkan jarak bawah pada judul */
}
article h4 {
  /* font-family: 'Arial', sans-serif; */
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: #555555;
  margin-top: 20px; /* Menambah jarak sebelum subjudul */
}
article li, article p {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.5;
  color: #333333;
  margin-bottom: 10px; /* Memberikan jarak antar item */
}