.pzik-blog-page .hero h1 {
  max-width: 820px;
}

.pzik-blog-page .sample-panel {
  width: 190px;
}

.pzik-blog-page .sample-panel strong {
  font-size: 28px;
}

.latest-section {
  padding-top: 58px;
}

.insight-grid,
.pillar-grid,
.topic-list {
  display: grid;
  gap: 18px;
}

.insight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insight-card,
.pillar-grid article,
.topic-list article,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.insight-card {
  min-height: 100%;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.insight-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.insight-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.insight-card img,
.insight-image-fallback {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.insight-image-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #f7fbf8 0%, #edf6fc 100%);
  color: var(--green-dark);
}

.insight-image-fallback svg {
  width: 54px;
  height: 54px;
}

.insight-card div {
  padding: 22px;
}

.insight-card span,
.pillar-grid span {
  display: inline-flex;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.insight-card h3,
.pillar-grid h3,
.topic-list h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
}

.insight-card p,
.pillar-grid p,
.cta-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.insight-card small {
  display: block;
  margin-top: 18px;
  color: #71808e;
  font-size: 13px;
  font-weight: 760;
}

.soft-section {
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.pillar-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pillar-grid article {
  min-height: 272px;
  padding: 24px;
  background: #fbfdfc;
}

.pillar-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
}

.pillar-grid article:nth-child(2) svg,
.pillar-grid article:nth-child(4) svg {
  background: var(--blue-soft);
  color: var(--blue);
}

.topic-list {
  grid-template-columns: repeat(2, 1fr);
}

.topic-list article {
  min-height: 126px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.topic-list span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.topic-list h3 {
  margin: 0;
  font-size: 18px;
}

.cta-section {
  padding-top: 32px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 32px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, #f7fbf8 0%, #edf6fc 100%);
}

.cta-panel h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

.cta-panel p:not(.eyebrow) {
  max-width: 690px;
  font-size: 15px;
}

@media (max-width: 1120px) {
  .insight-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .primary-btn {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .insight-grid,
  .pillar-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }

  .pillar-grid article,
  .topic-list article {
    min-height: auto;
  }

  .topic-list article {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .topic-list span {
    width: 42px;
    height: 42px;
  }

  .cta-panel {
    padding: 24px;
  }

  .cta-panel h2 {
    font-size: 30px;
  }
}
