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

body {
  font-family: 'Georgia', serif;
  background-color: #f7f4eb;
  color: #1a1a1a;
  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 40px 20px 100px 20px;

}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.page-header h1 {
  font-size: 2.8rem;
  color: #4a3728;
  margin-bottom: 8px;
  font-weight: 700;
}

.page-header h2 {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: normal;
  color: #333333;
}

.article-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.featured-article {
  grid-column: span 2;
}

.image-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #e2e2e2;
}

.featured-article .image-wrapper {
  height: 340px;
}

.landscape-card .image-wrapper {
  height: 240px;
}

.portrait-card .image-wrapper {
  height: 380px;
}

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

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  min-height: 35px;
}

.summary-box {
  margin-bottom: 20px;
  min-height: 100px;
}

.summary-box p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444444;
}

.read-more-btn {
  display: inline-block;
  text-decoration: none;
  background-color: #cbaf87;
  color: #1a1a1a;
  padding: 12px 24px;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-top: auto;
  transition: background-color 0.2s ease-in-out;
}

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

.page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(247, 245, 236);
  text-align: center;
  padding: 20px 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.page-footer p {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: rgb(85, 85, 85);
  font-weight: bold;
}

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

  .featured-article {
    grid-column: span 1;
  }

  .card-content h3,
  .summary-box {
    min-height: auto;
  }

  .portrait-card .image-wrapper {
    height: 240px;
  }
}