/*
 Theme Name:   Eduma Child
 Theme URI:    http://educationwp.thimpress.com/
 Description:  Eduma Child Theme
 Author:       ThimPress
 Author URI:   http://thimpress.com
 Template:     eduma
 Version:      1.0.0
 Text Domain:  eduma-child
*/
/* =================================================
   RESET
   ================================================= */
.news-grid-top *,
.news-horizontal * {
  box-sizing: border-box;
}

.news-grid-top img,
.news-horizontal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================================================
   GRID ATAS
   ================================================= */
.news-grid-top{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}

/* =================================================
   HEADLINE BESAR (KIRI)
   ================================================= */
.news-headline-big{
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
}

.news-headline-big img{
  transition: transform .35s ease;
}

/* overlay */
.headline-overlay{
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: linear-gradient(to top,#4682B4,rgba(0,0,0,.45),transparent);
  color: #fff;
}

.headline-overlay h2{
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  color: #fff !important;
  text-shadow: 0 3px 8px rgba(0,0,0,.55);
}

.headline-overlay .featured-date,
.headline-overlay .badge{
  font-size: 13px;
  color: rgba(255,255,255,.9);
}

/* =================================================
   HEADLINE KANAN ATAS (3 BARIS)
   ================================================= */
.news-headline-small{
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.news-headline-small .post-thumb{
  height: 250px;
  overflow: hidden;
}

.news-headline-small img{
  transition: transform .35s ease;
}

.news-headline-small .small-content{
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* === JUDUL 3 BARIS (KANAN ATAS) === */
.news-headline-small h4,
.news-headline-small h4 a{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a !important;

  display: -webkit-box;
  -webkit-line-clamp: 3;   /* ✅ 3 BARIS */
  -webkit-box-orient: vertical;
  overflow: hidden;
/* INI YANG PALING PENTING */
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;

  min-height: 65px; /* tinggi 3 baris */
  
}

.news-headline-small span{
  font-size: 12px;
  color: #6b7280;
}

/* =================================================
   GRID BAWAH
   ================================================= */
.news-horizontal{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.news-horizontal-item{
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.news-horizontal-item .post-thumb{
  height: 160px;
  overflow: hidden;
}

.news-horizontal-item img{
  transition: transform .35s ease;
}

.news-horizontal-item .horizontal-content{
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-horizontal-item h5{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: 42px;
}

.news-horizontal-item span{
  font-size: 12px;
  color: #6b7280;
}

/* =================================================
   BUTTON
   ================================================= */
.news-more{
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;

  transition: background-color .3s ease,
              color .3s ease,
              transform .3s ease,
              box-shadow .3s ease;
}

.news-more::after{
  content: " →";
  margin-left: 6px;
  transition: transform .3s ease;
}

/* =================================================
   HOVER
   ================================================= */
.news-headline-big:hover img,
.news-headline-small:hover img,
.news-horizontal-item:hover img{
  transform: scale(1.05);
}

.news-headline-small:hover,
.news-horizontal-item:hover,
.news-more:hover{
  background: #4682B4;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.news-headline-small:hover h4,
.news-headline-small:hover span,
.news-horizontal-item:hover h5,
.news-horizontal-item:hover span,
.news-more:hover{
  color: #ffffff !important;
}

.news-more:hover::after{
  transform: translateX(4px);
}

/* =================================================
   RESPONSIVE
   ================================================= */
/* =================================================
   MOBILE LAYOUT KHUSUS (≤ 640px)
   ================================================= */
@media (max-width: 640px){

  /* ===== WRAPPER UTAMA ===== */
  .home-news{
    padding-left: 14px;
    padding-right: 14px;
  }

  /* ===== GRID ATAS JADI 1 KOLOM ===== */
  .news-grid-top{
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* ===== BERITA UTAMA ===== */
  .news-headline-big{
    height: 320px;
    border-radius: 18px;
  }

  .headline-overlay{
    padding: 18px;
  }

  .news-headline-big h2{
    font-size: 20px;
    -webkit-line-clamp: 3;
  }

  /* ===== POST KANAN → JADI TEKS SAJA ===== */
  .news-headline-small{
    display: block;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  /* HILANGKAN GAMBAR */
  .news-headline-small .post-thumb{
    display: none;
  }

  .news-headline-small .small-content{
    padding: 10px 2px;
  }

  /* JUDUL 2 BARIS */
  .news-headline-small h4{
    font-size: 15px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    min-height: auto;
  }

  .news-headline-small span{
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
  }

  /* GARIS PEMISAH HALUS */
  .news-headline-small + .news-headline-small{
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
  }
  /* ===== GRID BAWAH JADI SLIDER ===== */
  .news-horizontal{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .news-horizontal::-webkit-scrollbar{
    display: none;
  }

  .news-horizontal-item,
  .news-more{
    flex: 0 0 70%;     /* ukuran card */
    scroll-snap-align: start;
  }

  .news-horizontal-item .post-thumb{
    height: 120px;
  }

  .news-horizontal-item h5{
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}

html, body {
  overscroll-behavior-y: auto !important;
  touch-action: pan-y !important;
  overflow-y: auto !important;
}