* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
}

/* ─── Banner ─────────────────────────────────────────────── */
.banner {
  position: relative;
  width: 100%;
  height: 520px;
  background-image: url('/Assets/blog-banner.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.75) 35%,
    rgba(0, 0, 0, 0.70) 70%,
    rgba(0, 0, 0, 0.10) 100%
  );
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  height: 100%;
  padding: 120px 250px;          
  margin-top: 60px;
}

.banner-content h1 {
  color: #ffffff;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.breadcrumb {
  color: #cccccc;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.5;
  margin-left: 5px;
}

.breadcrumb a {
  color: #116E4A;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.5;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ─── Blog Section ───────────────────────────────────────── */
.blog-section {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 130px;           /* matches banner left padding */
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 80px 0;
}

/* ─── Blog Post Card ─────────────────────────────────────── */
.blog-post {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  gap: 14px;
  width: 100%;
}

.blog-post img {
  width: 100%;
  height: 300px;              /* taller to match design */
  object-fit: cover;
  object-position: center;
  border-radius: 28px;        /* slightly more rounded */
}

.blog-post h2 {
  color: #000000;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.4;
}

/* Read More button with arrow icon */
.blog-post .read-more {
  display: grid;
  grid-template-columns: auto auto;  /* text + icon side by side */
  align-items: center;
  justify-content: start;
  gap: 6px;
  background-color: transparent;
  border: none;
  color: #116E4A;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.blog-post .read-more::after {
  content: '↗';               /* arrow icon matching design */
  font-size: 14px;
  color: #116E4A;
}

.blog-post .read-more:hover {
  text-decoration: underline;
}

/* ─── Media Queries ──────────────────────────────────────── */

/* Large desktop */
@media (max-width: 1280px) {
  .banner-content,
  .blog-section {
    padding: 0 80px;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .banner-content,
  .blog-section {
    padding: 0 60px;
  }

  .blog-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .banner {
    height: 400px;
  }

  .banner-content,
  .blog-section {
    padding: 0 36px;
  }

  .blog-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 60px 0;
  }

  .blog-post img {
    height: 220px;
    border-radius: 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .banner {
    height: 300px;
  }

  .banner-content,
  .blog-section {
    padding: 0 20px;
  }

  .blog-container {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 40px 0;
  }

  .blog-post img {
    height: 240px;
    border-radius: 16px;
  }
}