.blog {
  max-width: 880px;
  margin: auto;
  padding: 32px 16px;
  font-family: inherit;
}

/* HERO */
.blog-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #ffffff;
}

.blog-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
}

/* CONTENT */
.blog-content {
  color: rgba(248, 249, 250, 0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.blog-content h2,
.blog-content h3 {
  margin: 24px 0 8px;
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 600;
}

/* IMAGE GRID */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.blog-grid img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  border-radius: 14px;
}

/* RELATED */
.related {
  margin-top: 48px;
}

.related h2 {
  margin-bottom: 19.2px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19.2px;
}

.card {
  position: relative;
}

.card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 9.6px;
}

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #cc1303;
  color: white;
  font-size: 9.6px;
  padding: 4px 9.6px;
  border-radius: 20px;
}

.card h4 {
  font-size: 12.8px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 614.4px) {
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    font-size: 1.44rem;
  }

  .blog-hero img {
    max-height: 240px;
  }
}