/* === Kartu Berita Horizontal (Final Rapi) === */
#berita-pemda .berita-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.25s ease;
  overflow: hidden;
  min-height: 160px;
}

#berita-pemda .berita-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#berita-pemda .berita-img-wrapper {
  width: 250px;
  min-width: 250px;
  height: 200px;
  position: relative;
}

#berita-pemda .berita-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

#berita-pemda .berita-content {
  padding-left: 15px;
  border-left: 1px solid #ddd;
  height: 200px;
}

#berita-pemda .berita-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4em;
  text-decoration: none;
}

#berita-pemda .berita-title:hover {
  color: #198754;
}

#berita-pemda .berita-meta {
  font-size: 13px;
  color: #777;
}

#berita-pemda .berita-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.5em;
}

#berita-pemda .btn-berita {
  font-size: 13px;
  border: 1px solid #198754;
  color: #198754;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}


/*#berita-pemda .berita-content {
  padding-left: 15px;
  border-left: 1px solid #ddd;
  height: 200px;
  display: flex;
  flex-direction: column;
}
*/
#berita-pemda .btn-berita i {
  margin-right: 6px;
}

#berita-pemda .btn-berita:hover {
  background: #198754;
  color: #fff;
}

/* Tombol "Lihat Semua" */
#berita-pemda .btn-lihat-semua {
  display: inline-block;
  background: #198754;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
}

#berita-pemda .btn-lihat-semua:hover {
  background: #146c43;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
  #berita-pemda .berita-card {
    flex-direction: column;
  }
  #berita-pemda .berita-img-wrapper {
    width: 100%;
    height: 180px;
  }
  #berita-pemda .berita-content {
    border-left: none;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    padding-left: 0;
  }
}
