/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

/* LINKS */
a {
  color: #1f2937;
}

a:hover {
  text-decoration: underline;
}

/* HEADER */
.site-header {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-logo a {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 14px;
  text-decoration: none;
  color: #111827;
}

/* CONTENT */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.content h2 {
  font-size: 22px;
  margin-top: 40px;
}

/* HERO */
.hero {
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}

/* ARTICLE LIST */
.article-item {
  display: flex;
  gap: 24px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.article-item img {
  width: 200px;
  height: auto;
  background: #e5e7eb;
  flex-shrink: 0;
}

.article-text {
  display: flex;
  flex-direction: column;
}

.article-text h2 {
  margin: 0 0 10px 0;
}

.article-text p {
  margin: 0 0 14px 0;
}

.read-more {
  align-self: flex-start;
  padding: 8px 14px;
  background: #374151;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.read-more:hover {
  background: #111827;
}

/* ARTICLE CONTENT */
.article-content p {
  margin-bottom: 18px;
}

/* FOOTER */
.site-footer {
  background: #f3f4f6;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #4b5563;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-nav {
    gap: 12px;
  }

  .article-item {
    flex-direction: column;
  }

  .article-item img {
    width: 100%;
    max-width: 100%;
  }

  .content {
    padding: 40px 16px;
  }
}
