*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
}

body{
  background:#015c1c;
  font-family:Arial,Helvetica,sans-serif;
  color:#123f2a;
}

.berita-terbaru-halaman{
  width:calc(100% - 32px);
  max-width:1100px;
  margin:30px auto;
}

.berita-terbaru-heading{
  margin:0 0 16px 0;
  font-size:15px;
  font-weight:600;
  color:#123f2a;
}

.berita-terbaru-actions{
  margin:0 0 16px 0;
}

.baca-semua-berita{
  display:inline-block;
  padding:10px 18px;
  background:#0b6a3b;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-size:13px;
  font-weight:bold;
  transition:background .2s ease,transform .2s ease;
}

.baca-semua-berita:hover{
  background:#084f2d;
  transform:translateY(-1px);
}

/* GRID 3 BERITA DI DESKTOP */
.berita-terbaru-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.berita-terbaru-link{
  display:block;
  color:inherit;
  text-decoration:none;
  outline:none;
}

.berita-terbaru-card{
  position:relative;
  overflow:hidden;
  background:#96fa96;
  border-radius:14px;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease;
  height:100%;
}

.berita-terbaru-link:hover .berita-terbaru-card{
  transform:translateY(-3px);
  box-shadow:0 7px 22px rgba(0,0,0,.54);
}

/* GAMBAR DI ATAS */
.berita-terbaru-media{
  width:100%;
  height:220px;
  overflow:hidden;
  background:#f50202;
}

.berita-terbaru-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* FALLBACK JIKA TIDAK ADA GAMBAR */
.berita-terbaru-placeholder{
  width:100%;
  height:100%;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:25px;
  background:linear-gradient(135deg,#c76210,#f8faf8);
}

.berita-terbaru-placeholder-inner{
  max-width:90%;
}

.berita-terbaru-placeholder-label{
  margin-bottom:10px;
  font-size:12px;
  font-weight:bold;
  letter-spacing:1.4px;
  color:#0b6a3b;
  text-transform:uppercase;
}

.berita-terbaru-placeholder-title{
  font-size:20px;
  line-height:1.3;
  font-weight:bold;
  color:#123f2a;
}

/* INFORMASI BERITA */
.berita-terbaru-info{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
}

.berita-terbaru-meta{
  margin-bottom:9px;
  font-size:12px;
  color:#167244;
  font-weight:bold;
}

.berita-terbaru-title{
  font-size:21px;
  line-height:1.32;
  font-weight:bold;
  color:#123f2a;
}

.berita-terbaru-source{
  margin-top:12px;
  font-size:13px;
  color:#666;
}

.berita-terbaru-hint{
  margin-top:14px;
  font-size:11px;
  color:#888;
}

/* PESAN LOADING / ERROR */
.berita-terbaru-error,
.berita-terbaru-loading{
  padding:25px;
  background:#fff;
  border-radius:12px;
  color:#555;
}

.berita-terbaru-error strong{
  color:#a22;
}

/* TABLET / HP */
@media(max-width:700px){
  .berita-terbaru-halaman{
    width:calc(100% - 20px);
    margin:20px auto;
  }

  .berita-terbaru-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .berita-terbaru-media{
    height:210px;
  }

  .berita-terbaru-placeholder{
    min-height:210px;
  }

  .berita-terbaru-title{
    font-size:20px;
  }
}
