.blog-hero {
  padding: 128px 0 54px;
  background: linear-gradient(180deg, #f6f7f9 0%, #fff 100%);
}
.blog-hero .breadcrumbs { margin-bottom: 22px; }
.blog-hero .eyebrow {
  width: auto;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}
.blog-hero h1 {
  width: min(820px, 100%);
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}
.blog-hero p {
  width: min(720px, 100%);
  margin: 0;
  color: #526070;
  font-size: 18px;
  line-height: 1.75;
}
.blog-index-hero h1 {
  width: min(1040px, 100%);
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1.08;
}
.blog-index-hero > .container > p:not(.eyebrow) {
  width: min(780px, 100%);
}
.blog-list {
  padding: 40px 0 76px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  display: grid;
  align-content: start;
  min-height: 248px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 22, 29, 0.15);
  box-shadow: 0 16px 34px rgba(17, 22, 29, 0.09);
}
.blog-card small,
.post-meta {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #f6f7f9;
}
.blog-card-body {
  display: grid;
  align-content: start;
  padding: 24px 24px 26px;
}
.blog-card h2 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: 0;
}
.blog-card p {
  margin: 0;
  color: #526070;
  line-height: 1.7;
}
.post-cover {
  position: relative;
  margin-top: -18px;
}
.post-cover > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #f6f7f9;
  box-shadow: 0 18px 42px rgba(17, 22, 29, 0.08);
}
.post-cover-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 230px;
  min-height: 58px;
  padding: 12px 16px 16px;
  border: 1px solid rgba(17, 22, 29, 0.1);
  background: rgba(255, 255, 255, 0.96);
}
.post-cover-logo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--red);
}
.post-cover-logo img {
  width: 190px;
  height: auto;
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 54px;
  align-items: start;
  padding: 48px 0 76px;
}
.post-content h2 {
  margin: 34px 0 12px;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: 0;
}
.post-content h2:first-child { margin-top: 0; }
.post-content p,
.post-content li {
  color: #2d3845;
  font-size: 17px;
  line-height: 1.82;
}
.post-content p { margin: 0 0 18px; }
.post-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 20px;
}
.post-content strong {
  color: #0f151c;
  font-weight: 900;
}
.post-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}
.post-aside h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 20px;
}
.post-aside a {
  color: #44505d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.post-aside a:hover { color: var(--red); }
.post-cta {
  margin-top: 34px;
  padding: 26px;
  background: #10161d;
  color: #fff;
}
.post-cta h2 {
  margin-top: 0;
  color: #fff;
}
.post-cta p { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; gap: 30px; }
  .post-aside { position: static; }
}

@media (max-width: 640px) {
  .blog-hero { padding: 112px 0 42px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 0; }
  .blog-card-body { padding: 22px; }
  .post-cover { margin-top: -10px; }
  .post-cover-logo {
    top: 14px;
    left: 14px;
    width: 172px;
    min-height: 48px;
    padding: 10px 12px 14px;
  }
  .post-cover-logo img { width: 142px; }
  .post-layout { padding: 34px 0 58px; }
  .post-content h2 { font-size: 24px; }
  .post-content p,
  .post-content li { font-size: 16px; line-height: 1.74; }
}
