.blog-page {
  background: #fff;
}

.blog-page-hero {
  max-width: 1200px;
  min-height: 275px;
  margin: 18px auto 0;
  padding: 60px 24px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)),
    url("../images/page-header-bg.jpg") center 58% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.blog-page-hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.blog-page-hero .breadcrumb {
  justify-content: center;
  margin: 0;
}

.blog-page-hero .breadcrumb-item,
.blog-page-hero .breadcrumb-item a {
  color: #fff;
}

.blog-page-hero .breadcrumb-item.active {
  color: var(--accent-color);
}

.blog-showcase {
  padding: 42px 0 10px;
}

.blog-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.blog-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 46px);
}

.blog-intro p {
  margin: 0;
  color: #666;
}

.featured-story {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}

.featured-story > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-story:hover > img {
  transform: scale(1.04);
}

.featured-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.92) 100%);
}

.featured-story-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  color: #fff;
}

.story-date {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  color: inherit;
}

.story-date i {
  margin-right: 7px;
  color: var(--accent-color);
}

.featured-story h3 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.25;
}

.featured-story a {
  color: inherit;
}

.story-arrow {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-top: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: #fff;
}

.story-list {
  display: grid;
  gap: 20px;
  height: 100%;
}

.story-list-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.story-list-item > a {
  height: 132px;
  border-radius: 17px;
  overflow: hidden;
}

.story-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-list-item:hover img {
  transform: scale(1.05);
}

.story-list-item h3 {
  margin: 5px 0 11px;
  font-size: 19px;
  line-height: 1.35;
}

.story-list-item h3 a {
  color: var(--primary-color);
}

.story-read-more {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
}

.more-guides {
  padding: 70px 0 0;
}

.more-guides-heading {
  margin-bottom: 30px;
  text-align: center;
}

.guide-card {
  height: 100%;
  border: 1px solid #ebebeb;
  border-radius: 19px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.guide-card > a {
  display: block;
  height: 210px;
  overflow: hidden;
}

.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guide-card:hover img {
  transform: scale(1.04);
}

.guide-card-content {
  padding: 22px;
}

.guide-card h3 {
  margin: 7px 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.guide-card h3 a {
  color: var(--primary-color);
}


.blog-page .main-footer {
  max-width: 1200px;
  margin: 80px auto 24px;
  border-radius: 28px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .blog-page-hero,
  .blog-page .main-footer {
    max-width: calc(100% - 30px);
  }
}

@media (max-width: 991px) {
  .featured-story {
    min-height: 390px;
    margin-bottom: 32px;
  }

}

@media (max-width: 575px) {
  .blog-page-hero {
    min-height: 220px;
    margin-top: 10px;
    border-radius: 20px;
  }

  .story-list-item {
    grid-template-columns: 112px 1fr;
    gap: 14px;
  }

  .story-list-item > a {
    height: 112px;
  }

  .story-list-item h3 {
    font-size: 16px;
  }

  .featured-story-content {
    padding: 24px;
  }

}
