* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}

/* HEADER */
.page-header {
  text-align: center;
  padding: 40px 20px 20px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.description {
  font-style: italic;
  color: #4b5563;
}

/* MAIN */
.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ARTICLES */
article {
  border: 2px solid #000;
  background: #fff;
  margin-bottom: 30px;
}

.image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2px solid #000;
  background: #f3f4f6;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-details {
  padding: 20px;
}

.article-details h2 {
  margin: 0 0 10px;
}

.summary {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #1f2937;
}

/* BUTTON */
.read-more-btn {
  display: inline-block;
  border: 2px solid #000;
  padding: 8px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: bold;
  color: #000;
  transition: 0.2s;
}

.read-more-btn:hover {
  background: #000;
  color: #fff;
}

/* GRID */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

/* FOOTER */
.page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-top: 2px solid #000;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
