/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #ffffff;
  color: #1f1f1f;
  line-height: 1.8;
  font-size: 18px;
  padding-bottom: 3rem;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
header {
  padding: 0;
  padding-top: 1rem;
  border-bottom: 1px solid #e0e0e0;
  background-color: #ffffff;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 150px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.6rem;
}

.nav-list a {
  text-decoration: none;
  font-family: sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 16px;
}

.nav-list a:hover {
  color: #0074c2;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
}

.hero h2 {
  font-size: 2.4rem;
  font-family: 'Times New Roman', serif;
  font-weight: normal;
  margin-bottom: 0.4rem;
}

.hero p {
  font-size: 1rem;
  color: #555;
}

/* ===== DIGEST SECTIONS ===== */
.digest-section {
  margin-bottom: 3rem;
}

.digest-section h3 {
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
  color: #111;
  margin-bottom: 1rem;
  border-left: 4px solid #0074c2;
  padding-left: 0.8rem;
}

.digest-section ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.digest-section li {
  margin-bottom: 0.8rem;
}

.digest-section a {
  color: #0074c2;
  text-decoration: none;
}

.digest-section a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
}
