.blog-shell {
  width: 100%;
  margin: 0;
  padding: 0 0 64px;
  background: #fff;
}

.blog-hero {
  display: grid;
  align-content: end;
  min-height: 500px;
  padding: 72px max(32px, calc((100vw - 1180px) / 2)) 56px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 10, 11, 0.94), rgba(5, 10, 11, 0.78) 42%, rgba(5, 10, 11, 0.18)),
    url("../assets/industrial-storage-yard.png");
  background-position: center;
  background-size: cover;
  border-bottom: 0;
}

.blog-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(52px, 6.2vw, 86px);
  line-height: 0.94;
}

.blog-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.45;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 64px));
  margin: 38px auto 0;
}

.article-row {
  display: grid;
  align-content: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8dee1;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(20, 30, 34, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.article-row:hover {
  transform: translateY(-2px);
  border-color: #b8c3ca;
  box-shadow: 0 14px 34px rgba(18, 28, 32, 0.14);
}

.article-row img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.article-row span,
.article-meta {
  color: #9e7615;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-row span {
  margin: 18px 18px 0;
}

.article-row h2 {
  margin: 8px 18px 0;
  color: #101414;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.03;
}

.article-row p {
  margin: 12px 18px 20px;
  color: #2f3a36;
  font-size: 15px;
  line-height: 1.45;
}

.article {
  width: 100%;
  margin: 0;
  padding: 0 0 72px;
  background:
    linear-gradient(90deg, rgba(5, 10, 11, 0.94), rgba(5, 10, 11, 0.78) 42%, rgba(5, 10, 11, 0.18)) top / 100% 560px no-repeat,
    url("../assets/industrial-storage-yard.png") top center / 100% 560px no-repeat,
    #fff;
}

.article > .article-meta,
.article > h1,
.article > .lede,
.article-body {
  width: min(900px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.article > .article-meta {
  display: block;
  padding-top: 70px;
  color: #f6c30d;
}

.article > h1 {
  margin-top: 12px;
  color: #fff;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.94;
}

.article > .lede {
  max-width: 820px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.48;
}

.article-body {
  margin-top: 88px;
  padding: 0;
}

.article-body h2 {
  margin: 42px 0 14px;
  color: #101414;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 1;
}

.article-body p,
.article-body li {
  color: #2f3a36;
  font-size: 18px;
  line-height: 1.62;
}

.article-body a {
  color: #064b81;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-body .button {
  text-decoration: none;
}

.article-body ul {
  padding-left: 22px;
}

.article-cta {
  margin-top: 44px;
  padding: 28px;
  background: linear-gradient(90deg, #073a63, #0b5489);
  color: #fff;
  border-radius: 0;
}

.article-cta h2 {
  margin: 0;
  color: #fff;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

@media (max-width: 640px) {
  .blog-hero {
    min-height: auto;
    padding: 48px 16px;
  }

  .blog-hero h1,
  .article > h1 {
    font-size: 44px;
  }

  .article-list,
  .article > .article-meta,
  .article > h1,
  .article > .lede,
  .article-body {
    width: calc(100% - 32px);
  }

  .article-list {
    grid-template-columns: 1fr;
  }

  .article {
    background-size: 100% 520px, 100% 520px, auto;
  }

  .article-body {
    margin-top: 64px;
  }

  .article-cta {
    padding: 22px;
  }

  .cta-actions {
    display: grid;
  }
}
