/* ============================================================
   5. BREAKING NEWS
   ============================================================ */
.breaking-bar {
  background: var(--brick);
  color: #fff;
}

.breaking-bar .inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.breaking-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  flex: none;
  background: var(--brick-dark);
  padding: 0.25rem 0.55rem;
  border-radius: 20px;
}

.breaking-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-body);
  font-weight: 500;
}

.breaking-text a {
  color: #fff;
  text-decoration: none;
}

.breaking-text a:hover {
  text-decoration: underline;
}

/* ============================================================
   6. HALAMAN HOME
   ============================================================ */

/* ---------- 6a. Hero Section ---------- */
.hero-section {
  padding: 1.25rem 0 0.5rem;
}

.hero-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
}

.hero-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--sea-tint);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/10;
}

.hero-cat-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--brick);
  color: #fff;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.hero-body {
  padding: 1.1rem 1.1rem 1.3rem;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sea-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.hero-title a {
  color: inherit;
}

.hero-summary {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
}

.hero-cta:hover {
  background: var(--sea-dark);
  color: #fff;
}

@media (min-width: 768px) {
  .hero-card {
    display: flex;
  }
  .hero-img-wrap {
    width: 58%;
  }
  .hero-img-wrap img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 340px;
  }
  .hero-body {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem;
  }
  .hero-title {
    font-size: 1.9rem;
  }
}

/* ---------- 6b. Section Headings ---------- */
.section {
  padding: 1.75rem 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--ink);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title .bi {
  color: var(--gold);
  font-size: 1.05rem;
}

.section-link {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- 6c. Berita Terbaru (list) ---------- */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.news-list-item:first-child {
  padding-top: 0;
}

.news-thumb {
  flex: none;
  width: 84px;
  height: 84px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sea-tint);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-meta {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sea-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.news-meta .dot {
  color: var(--ink-soft);
  font-weight: 400;
}

.news-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.news-title a {
  color: inherit;
}

.news-summary {
  color: var(--ink-soft);
  font-size: 0.86rem;
  margin: 0;
}

@media (min-width: 768px) {
  .news-thumb {
    width: 104px;
    height: 104px;
  }
  .news-title {
    font-size: 1.08rem;
  }
}

/* ---------- 6d. Berita Populer ---------- */
.popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pop;
}

.popular-item {
  counter-increment: pop;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.popular-item:first-child {
  padding-top: 0;
}

.popular-item::before {
  content: counter(pop);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold);
  flex: none;
  width: 1.6rem;
  text-align: center;
}

.popular-item a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.popular-item a:hover {
  color: var(--sea-dark);
}

/* ---------- 6e. Kategori Pilihan ---------- */
.cat-block {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  height: 100%;
}

.cat-block-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}

.cat-block-title {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  flex: 1;
}

.cat-block ul {
  list-style: none;
  margin: 0 0 0.6rem;
  padding: 0;
}

.cat-block li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
}

.cat-block li:last-child {
  border-bottom: none;
}

.cat-block li a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.cat-block li a:hover {
  color: var(--sea-dark);
}

.cat-block-more {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
}