.pukasaze-blog {
  --pb-ink: #172127;
  --pb-muted: #677278;
  --pb-paper: #f5f2ed;
  --pb-card: #ffffff;
  --pb-accent: #d85b32;
  --pb-accent-dark: #b94524;
  --pb-line: rgb(23 33 39 / 10%);
  --pb-green: #53695c;
  --pb-radius-xl: 30px;
  --pb-radius-lg: 22px;
  --pb-radius-md: 16px;
  --pb-shadow: 0 22px 60px rgb(30 36 39 / 9%);
  background: var(--pb-paper);
  color: var(--pb-ink);
  overflow: hidden;
}

.pblog-hero {
  position: relative;
  min-height: 560px;
  padding: 72px 0 52px;
  background: #111b21;
  color: #fff;
  isolation: isolate;
}

.pblog-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgb(15 25 31 / 97%) 0%,
      rgb(15 25 31 / 88%) 46%,
      rgb(15 25 31 / 40%) 100%
    ),
    url("../img/archive-hero-back.jpg") center 52% / cover no-repeat;
      center 52% / cover;
  content: "";
}

.pblog-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent 76%);
}

.pblog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.58fr);
  gap: 72px;
  align-items: end;
}

.pblog-eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--pb-accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pblog-eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.pblog-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.pblog-hero h1 em {
  position: relative;
  color: var(--pb-accent);
  font-style: normal;
}

.pblog-hero__lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 2;
}

.pblog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 34px;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 18px;
  background: rgb(255 255 255 / 9%);
  box-shadow: 0 18px 60px rgb(0 0 0 / 18%);
  backdrop-filter: blur(14px);
}

.pblog-search label {
  position: relative;
  display: flex;
  align-items: center;
}

.pblog-search svg {
  position: absolute;
  right: 18px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgb(255 255 255 / 55%);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.pblog-search input {
  width: 100%;
  height: 52px;
  padding: 0 52px 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}

.pblog-search input::placeholder {
  color: rgb(255 255 255 / 50%);
}

.pblog-search button {
  min-width: 112px;
  border: 0;
  border-radius: 13px;
  background: var(--pb-accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.pblog-search button:hover {
  background: var(--pb-accent-dark);
  transform: translateY(-1px);
}

.pblog-hero__aside {
  display: grid;
  gap: 12px;
}

.pblog-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 18px;
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(12px);
}

.pblog-hero-stat__number {
  color: var(--pb-accent);
  font-size: 1.65rem;
  font-weight: 900;
}

.pblog-hero-stat__text strong,
.pblog-hero-stat__text span {
  display: block;
}

.pblog-hero-stat__text strong {
  font-size: 0.93rem;
}

.pblog-hero-stat__text span {
  margin-top: 3px;
  color: rgb(255 255 255 / 50%);
  font-size: 0.76rem;
}

.pblog-hero-stat svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgb(255 255 255 / 42%);
  stroke-width: 1.6;
}

.pblog-topic-nav {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: -27px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid var(--pb-line);
  border-radius: 19px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 16px 44px rgb(23 33 39 / 11%);
  scrollbar-width: none;
  backdrop-filter: blur(12px);
}

.pblog-topic-nav::-webkit-scrollbar {
  display: none;
}

.pblog-topic-nav a {
  flex: 0 0 auto;
  padding: 11px 17px;
  border-radius: 12px;
  color: #4f5a60;
  font-size: 0.82rem;
  font-weight: 750;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.pblog-topic-nav a:first-child,
.pblog-topic-nav a:hover {
  background: var(--pb-ink);
  color: #fff;
}

.pblog-section {
  padding-top: 92px;
}

.pblog-section-heading {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.pblog-section-heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.pblog-section-heading p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--pb-muted);
  font-size: 0.92rem;
  line-height: 1.9;
}

.pblog-more-link {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  align-items: center;
  min-height: 46px;
  padding: 5px 15px 5px 6px;
  border: 1px solid var(--pb-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(23 33 39 / 6%);
  color: var(--pb-ink) !important;
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.pblog-more-link span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--pb-accent);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.pblog-more-link:hover {
  border-color: rgb(216 91 50 / 36%);
  box-shadow: 0 12px 30px rgb(23 33 39 / 10%);
  transform: translateY(-2px);
}

.pblog-more-link:hover span {
  background: var(--pb-ink);
  transform: translateX(-3px);
}

.pblog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 18px;
}

.pblog-featured-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid var(--pb-line);
  border-radius: var(--pb-radius-xl);
  background: #fff;
  box-shadow: var(--pb-shadow);
}

.pblog-featured-main::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 88px;
  height: 5px;
  background: var(--pb-accent);
  content: "";
}

.pblog-featured-main__media {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #d9ddd9;
}

.pblog-featured-main__media img,
.pblog-featured-small__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.pblog-featured-main:hover .pblog-featured-main__media img,
.pblog-featured-small:hover .pblog-featured-small__media img {
  transform: scale(1.035);
}

.pblog-featured-main__number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 15px;
  background: rgb(23 33 39 / 72%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.pblog-featured-main__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.pblog-featured-main__top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pblog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--pb-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.pblog-featured-main h3 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.55;
}

.pblog-featured-main p {
  margin: 0 0 26px;
  color: var(--pb-muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.pblog-featured-read {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  color: var(--pb-accent) !important;
  font-size: 0.78rem;
  font-weight: 900;
}

.pblog-featured-read span {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.pblog-featured-read:hover span {
  transform: translateX(-4px);
}

.pblog-featured-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pblog-featured-small {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--pb-line);
  border-radius: var(--pb-radius-lg);
  background: #fff;
  box-shadow: 0 12px 34px rgb(23 33 39 / 5%);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pblog-featured-small:hover {
  border-color: rgb(216 91 50 / 28%);
  box-shadow: 0 18px 40px rgb(23 33 39 / 9%);
  transform: translateY(-3px);
}

.pblog-featured-small__media {
  min-height: 0;
  overflow: hidden;
  background: #d9ddd9;
}

.pblog-featured-small__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
}

.pblog-featured-small__category {
  color: var(--pb-accent);
  font-size: 0.68rem;
  font-weight: 900;
}

.pblog-featured-small h3 {
  margin: 9px 0 14px;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.75;
}

.pblog-featured-small .pblog-meta {
  margin: auto 0 0;
}

.pblog-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pblog-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pblog-filter {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--pb-line);
  border-radius: 999px;
  background: transparent;
  color: var(--pb-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
}

.pblog-filter.is-active,
.pblog-filter:hover {
  border-color: var(--pb-ink);
  background: var(--pb-ink);
  color: #fff;
}

.pblog-results-status {
  flex: 0 0 auto;
  color: var(--pb-muted);
  font-size: 0.78rem;
}

.pblog-empty {
  padding: 42px;
  border: 1px dashed rgb(23 33 39 / 18%);
  border-radius: var(--pb-radius-lg);
  background: rgb(255 255 255 / 55%);
  color: var(--pb-muted);
  text-align: center;
}

.pblog-empty[hidden] {
  display: none;
}

.pblog-topic-panel {
  position: relative;
  padding: 34px;
  border-radius: var(--pb-radius-xl);
  background: #e8e4de;
}

.pblog-topic-panel::before {
  position: absolute;
  top: 0;
  right: 44px;
  width: 74px;
  height: 4px;
  background: var(--pb-accent);
  content: "";
}

.pblog-topic-panel .pblog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pblog-topic-panel .pblog-card__body {
  padding: 18px;
}

.pblog-topic-panel .pblog-card h3 {
  font-size: 0.94rem;
}

.pblog-promo {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr auto;
  gap: 36px;
  align-items: center;
  margin-top: 92px;
  padding: 45px 50px;
  overflow: hidden;
  border-radius: var(--pb-radius-xl);
  background: var(--pb-accent);
  color: #fff;
}

.pblog-promo::before,
.pblog-promo::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  content: "";
}

.pblog-promo::before {
  top: -110px;
  left: -45px;
  width: 270px;
  height: 270px;
}

.pblog-promo::after {
  top: -65px;
  left: 3px;
  width: 175px;
  height: 175px;
}

.pblog-promo__content {
  position: relative;
  z-index: 1;
}

.pblog-promo span {
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.78;
}

.pblog-promo h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.55rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.45;
}

.pblog-promo p {
  max-width: 760px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.9;
  opacity: 0.8;
}

.pblog-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 6px 7px 6px 20px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 17px;
  background: var(--pb-ink);
  box-shadow: 0 16px 32px rgb(23 33 39 / 22%);
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pblog-button b {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: var(--pb-accent);
  color: #fff !important;
  font-size: 1.05rem;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pblog-button:hover {
  background: #0d151a;
  box-shadow: 0 20px 38px rgb(23 33 39 / 28%);
  transform: translateY(-3px);
}

.pblog-button:hover b {
  background: #fff;
  color: var(--pb-accent) !important;
  transform: translateX(-3px);
}

.pblog-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 22px;
  padding-top: 92px;
}

.pblog-editorial__main,
.pblog-resources {
  padding: 30px;
  border: 1px solid var(--pb-line);
  border-radius: var(--pb-radius-xl);
  background: #fff;
}

.pblog-editorial__heading {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pblog-editorial__heading h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 900;
}

.pblog-list-story {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--pb-line);
}

.pblog-list-story:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pblog-list-story__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
}

.pblog-list-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.pblog-list-story h3 {
  margin: 7px 0 8px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.7;
}

.pblog-list-story p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--pb-muted);
  font-size: 0.76rem;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pblog-kicker {
  color: var(--pb-accent);
  font-size: 0.68rem;
  font-weight: 850;
}

.pblog-resources {
  background: var(--pb-ink);
  color: #fff;
}

.pblog-resources__head {
  margin-bottom: 22px;
}

.pblog-resources__head span {
  color: var(--pb-accent);
  font-size: 0.7rem;
  font-weight: 850;
}

.pblog-resources__head h2 {
  margin: 7px 0 0;
  font-size: 1.45rem;
  font-weight: 900;
}

.pblog-resource {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
}

.pblog-resource__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background: rgb(255 255 255 / 8%);
}

.pblog-resource__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--pb-accent);
  stroke-width: 1.7;
}

.pblog-resource strong,
.pblog-resource small {
  display: block;
}

.pblog-resource strong {
  font-size: 0.8rem;
  line-height: 1.6;
}

.pblog-resource small {
  margin-top: 3px;
  color: rgb(255 255 255 / 44%);
  font-size: 0.65rem;
}

.pblog-resource__arrow {
  color: var(--pb-accent);
  font-size: 1.1rem;
}

.pblog-resources__all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  margin-top: 22px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 13px;
  font-size: 0.74rem;
  font-weight: 800;
}

.pblog-category-band {
	width: 100%;
	padding-block: clamp(72px, 7vw, 96px);
}

.pblog-category-band--light {
	background-color: var(--pb-paper);
	color: var(--pb-ink);
}

.pblog-category-band--dark {
	background-color: var(--pb-ink);
	color: #fff;
}

.pblog-category-band--dark .pblog-section-heading p {
  color: rgb(255 255 255 / 54%);
}

.pblog-category-band--dark .pblog-more-link {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 7%);
  box-shadow: none;
  color: #fff !important;
}

.pblog-category-band--dark .pblog-more-link span {
  background: var(--pb-accent);
}

.pblog-category-band--dark .pblog-more-link:hover {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 12%);
}

.pblog-category-band--dark .pblog-more-link:hover span {
  background: #fff;
  color: var(--pb-ink);
}

.pblog-category-band--dark .pblog-card {
  border-color: rgb(255 255 255 / 9%);
  background: #202c32;
}

.pblog-category-band--dark .pblog-card__excerpt,
.pblog-category-band--dark .pblog-meta {
  color: rgb(255 255 255 / 50%);
}
.pblog-category-band--dark .pblog-card {
  --pb-ink: #fff;
  --pb-muted: rgb(255 255 255 / 68%);
  --pb-line: rgb(255 255 255 / 12%);

  border-color: var(--pb-line);
  background: rgb(255 255 255 / 7%);
}

.pblog-category-band--dark .pblog-card h3,
.pblog-category-band--dark .pblog-card h3 a {
  color: var(--pb-ink);
}

.pblog-category-band--dark .pblog-card__excerpt,
.pblog-category-band--dark .pblog-meta {
  color: var(--pb-muted);
}

.pblog-category-band--dark .pblog-card h3 a:hover {
  color: var(--pb-accent);
}

.pblog-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 92px;
  padding: 48px;
  border: 1px solid var(--pb-line);
  border-radius: var(--pb-radius-xl);
  background: #fff;
  box-shadow: var(--pb-shadow);
}

.pblog-newsletter__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 15px;
  background: rgb(216 91 50 / 10%);
  color: var(--pb-accent);
}

.pblog-newsletter__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.pblog-newsletter h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.45;
}

.pblog-newsletter p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--pb-muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.pblog-newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 7px;
  border: 1px solid var(--pb-line);
  border-radius: 16px;
  background: var(--pb-paper);
}

.pblog-newsletter__form input {
  min-width: 0;
  height: 49px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.pblog-newsletter__form button {
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: var(--pb-ink);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
}

.pblog-form-note {
  margin-top: 9px;
  color: var(--pb-green);
  font-size: 0.72rem;
}

@media (max-width: 1120px) {
  .pblog-hero__grid,
  .pblog-featured-grid,
  .pblog-editorial,
  .pblog-newsletter {
    grid-template-columns: 1fr;
  }

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

  .pblog-featured-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .pblog-featured-small {
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 220px;
  }

  .pblog-topic-panel .pblog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pblog-newsletter {
    gap: 28px;
  }
}

@media (max-width: 860px) {

  .pblog-hero {
    min-height: auto;
    padding: 58px 0 70px;
  }

  .pblog-hero__grid {
    gap: 36px;
  }

  .pblog-hero__aside {
    grid-template-columns: 1fr;
  }

  .pblog-promo {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .pblog-button {
    justify-self: start;
  }
}

@media (max-width: 620px) {

  .pblog-hero {
    padding: 44px 0 62px;
  }

  .pblog-hero::before {
    background:
      linear-gradient(rgb(15 25 31 / 88%), rgb(15 25 31 / 96%)),
      url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1100&q=82")
        center / cover;
  }

  .pblog-hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.3rem);
  }

  .pblog-search {
    grid-template-columns: 1fr;
  }

  .pblog-search button {
    height: 47px;
  }

  .pblog-section,
  .pblog-editorial {
    padding-top: 68px;
  }

  .pblog-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .pblog-featured-main {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .pblog-featured-main__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .pblog-featured-main__content {
    padding: 28px 22px;
  }

  .pblog-featured-main__top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .pblog-featured-main p {
    margin-bottom: 20px;
  }



  .pblog-featured-small {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 180px;
  }

  .pblog-featured-small__content {
    padding: 18px 15px;
  }

  .pblog-more-link {
    min-height: 43px;
    padding-right: 13px;
  }

  .pblog-more-link span {
    width: 31px;
    height: 31px;
  }

  .pblog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .pblog-topic-panel,
  .pblog-editorial__main,
  .pblog-resources {
    padding: 20px;
    border-radius: 22px;
  }

  .pblog-promo {
    margin-top: 68px;
    padding: 30px 24px;
  }

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

  .pblog-list-story p {
    display: none;
  }

  .pblog-category-band {
    padding: 68px 0;
  }

  .pblog-category-band--dark {
    /* margin-top: 68px; */
  }


  .pblog-newsletter {
    margin-bottom: 68px;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .pblog-newsletter__form {
    grid-template-columns: 1fr;
  }

  .pblog-newsletter__form button {
    height: 47px;
  }
}


.pblog-featured-main__placeholder,
.pblog-featured-small__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	background:
		linear-gradient(
			135deg,
			#eee8df,
			#d8d2c8
		);
}