/* ======================
   RESET & GLOBAL
====================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #f4f4f4;
  padding-top: 110px; /* tinggi header fixed (SATU SUMBER) */
  font-family: 'Inter', system-ui, sans-serif;
}


/* ======================
   GLOBAL CONTAINER
====================== */
.container,
.warta-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}


/* ======================
   WARTA LAYOUT
====================== */
.warta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-top: 24px;
}

.warta-body {
  min-width: 0;
}

.warta-sidebar {
  min-width: 0;
}


/* ======================
   HEADER / FOOTER ZONE
   (Full width wrapper,
    centered content)
====================== */
/* Header zone default (headline, banner biasa) */
.warta-header-zone > :not(.breaking-news) {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}


/* ======================
   BREAKING & HEADLINE
====================== */
.headline-section {
  width: 100%;
  margin-bottom: 32px;
}


/* ======================
   GRID KOMPAS STYLE
====================== */
.warta-grid {
  display: grid;
  grid-template-columns: 3fr 1.35fr;
  gap: 28px;
  margin-top: 24px;
}


/* ======================
   CARD STYLE
====================== */
.warta-main section,
.warta-body section {
  background: #ffffff;
  padding: 18px;
  margin-bottom: 26px;
}

.warta-sidebar section {
  background: #ffffff;
  padding: 14px;
  margin-bottom: 22px;
}


/* ======================
   SECTION TITLE
====================== */
.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 10px;
}


/* ======================
   HEADLINE
====================== */
.headline-section img {
  width: 100%;
  display: block;
}

.headline-section h2 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 14px;
}


/* ======================
   LIST NEWS
====================== */
.news-list li {
  margin-bottom: 12px;
  line-height: 1.45;
}

.news-list a {
  font-weight: 600;
}


/* ======================
   MOBILE
====================== */
@media (max-width: 992px) {
  body {
    padding-top: 96px;
  }

  .warta-layout,
  .warta-grid {
    grid-template-columns: 1fr;
  }

  .warta-sidebar {
    position: static;
  }
}

