/* General styles for the Blog page */
.page-blog {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background: #08160F; /* Background */
}

.page-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog__section {
  padding: 60px 0;
}

.page-blog__dark-section {
  background: #0A4B2C; /* Deep Green for contrast */
}

.page-blog__section-title {
  font-size: clamp(28px, 4vw, 36px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

/* Hero Section */
.page-blog__hero-section {
  position: relative;
  padding-top: 10px; /* Rely on body for header offset, small top padding */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #08160F 0%, #0A4B2C 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height on desktop */
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop, will change to contain for mobile */
}

.page-blog__hero-content {
  text-align: center;
  max-width: 900px;
}

.page-blog__main-title {
  font-size: clamp(36px, 5vw, 50px); /* Using clamp for responsive font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-blog__description {
  font-size: 18px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}