:root {
  --accent: #d84500;
  --accent-soft: rgba(216, 69, 0, 0.18);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --bg: #0b0d12;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text-muted);
  font-family: "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 80%;
  left: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at 30% 50%,
    var(--accent-soft),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  width: min(1200px, 92%);
  margin: 70px auto 90px;
}

.page-title {
  text-align: center;
  margin-bottom: 60px;
}

.page-title h1 {
  margin: 0;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.page-title p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.divider {
  height: 1px;
  width: 100px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section {
  margin-bottom: 70px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--text-main);
}

.section-header span {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

/* BADGE + DATE */
.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.category-badge {
  padding: 6px 14px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.news-date {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.8;
}

/* FEATURED */
.featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 34px;
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.featured-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 40px var(--accent-soft);
  transform: translateY(-4px);
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  bottom: 26px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.featured-img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
}

.news-title {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.35;
}

.news-summary {
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.read-btn {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-main);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}

.read-btn:hover {
  color: var(--accent);
}

/* LATEST */
.latest-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.latest-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

/* TOP STORIES GRID */
.top-stories-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.top-stories-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s ease;
}

.top-stories-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.top-stories-content {
  padding: 16px;
}

.top-stories-title {
  color: var(--text-main);
  margin: 6px 0 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.top-stories-summary {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ARCHIVE */
.archive-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.archive-toggle {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
}

.chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.35s ease;
}

.chevron.rotate {
  transform: rotate(180deg);
}

.archive-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 18px 18px;
}

.archive-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
}

.archive-item strong {
  color: #c4c5c5;
  font-size: 0.85rem;
  display: block;
}

.archive-item .news-meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.8;
}

.archive-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.archive-item-link:hover .archive-item {
  border-color: #4c4d57;
  box-shadow: 0 8px 20px var(--accent-soft);
}

@media (max-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .latest-card {
    grid-template-columns: 1fr;
  }
}
