.bl-page {
  background: #fdfbf7;
}

.bl-page .header {
  background: #fff;
}

.bl-hero {
  display: grid;
  grid-template-columns: var(--side) minmax(0, 840px) minmax(0, 600px) var(--side);
  min-height: 520px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bl-hero-copy {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 80px 64px 80px 84px;
}

.bl-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #e6007e;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
}

.bl-kicker--sm {
  font-size: 10px;
  letter-spacing: 2px;
}

.bl-rule {
  width: 32px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.bl-hero h1 {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 68px;
  color: #1c1c19;
}

.bl-hero-copy > p {
  margin: 0;
  max-width: 580px;
  font-size: 18px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.65);
}

.bl-hero-media {
  grid-column: 3 / -1;
  display: grid;
  place-items: center;
  min-height: 360px;
  background: #fdfbf7;
}

.bl-hero-media img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 190px;
  background: #1c1c19;
}

.bl-feed {
  padding: 100px var(--inset-x) 120px;
}

.bl-feed-title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #1c1c19;
}

.bl-accent {
  width: 80px;
  height: 2px;
  background: #e6007e;
  margin-bottom: 48px;
}

.bl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.bl-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #fff;
  color: #1c1c19;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.bl-chip:hover {
  border-color: #1c1c19;
}

.bl-chip.is-active {
  background: #e6007e;
  border-color: #e6007e;
  color: #fff;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bl-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bl-card:hover {
  border-color: rgba(230, 0, 126, 0.35);
  box-shadow: 0 10px 28px rgba(28, 28, 25, 0.06);
}

.bl-card:hover .bl-card-more {
  color: #e6007e;
}

.bl-card-media {
  height: 220px;
  overflow: hidden;
  background: #fdfbf7;
}

.bl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bl-card:hover .bl-card-media img {
  transform: scale(1.04);
}

.bl-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 20px;
}

.bl-card-tag {
  margin: 0;
  color: #e6007e;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bl-card-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  color: #1c1c19;
}

.bl-card-date {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.bl-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  color: #1c1c19;
  transition: color 0.25s ease;
}

.bl-card-more img {
  width: 14px;
  height: 14px;
  display: block;
}

.bl-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  color: rgba(0, 0, 0, 0.55);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  background: #fff;
}

.bl-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.bl-page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  color: #1c1c19;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.bl-page-btn img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.bl-page-btn.is-active {
  background: #e6007e;
  border-color: #e6007e;
  color: #fff;
}

.bl-page-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.bl-page-btn--next {
  background: #1c1c19;
  border-color: #1c1c19;
}

.bl-social {
  display: grid;
  grid-template-columns: var(--side) minmax(0, 840px) minmax(0, 600px) var(--side);
  background: #fdfbf7;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bl-social-left,
.bl-materials {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 64px 80px 84px;
}

.bl-social-left {
  grid-column: 2;
}

.bl-materials {
  grid-column: 3;
  gap: 48px;
  padding: 80px 84px 80px 64px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.bl-social h2,
.bl-materials h2 {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: -2px;
  color: #1c1c19;
}

.bl-ig {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bl-ig a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.bl-ig a strong {
  transition: color 0.25s ease;
}

.bl-ig a:hover strong {
  color: #e6007e;
}

.bl-ig img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  background: #1c1c19;
}

.bl-ig strong {
  font-size: 13px;
}

.bl-ig span {
  color: #e6007e;
  font-size: 12px;
}

.bl-note {
  margin: 0;
  font-size: 10px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.45);
}

.bl-materials-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl-materials-block > p {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.bl-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 28px;
  border: 1px solid #1c1c19;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1c1c19;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.bl-outline:hover {
  background: #1c1c19;
  color: #fff;
}

.bl-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 24px 0;
}

.bl-tg {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

.bl-tg:hover {
  opacity: 0.75;
}

.bl-tg-icon {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #1c1c19;
  display: grid;
  place-items: center;
}

.bl-tg-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.bl-tg strong {
  display: block;
  font-size: 14px;
}

.bl-tg span {
  color: #e6007e;
  font-size: 12px;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .bl-hero,
  .bl-grid,
  .bl-social {
    grid-template-columns: 1fr;
  }

  .bl-hero-copy,
  .bl-hero-media,
  .bl-social-left,
  .bl-materials {
    grid-column: auto;
  }

  .bl-hero-media {
    min-height: 280px;
    padding: 32px 0;
  }

  .bl-hero-copy,
  .bl-feed,
  .bl-social-left,
  .bl-materials {
    padding: 48px 24px;
  }

  .bl-hero h1 {
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.1;
  }

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

  .bl-social h2,
  .bl-materials h2 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.15;
  }
}

@media (max-width: 640px) {
  .bl-hero-copy,
  .bl-feed,
  .bl-social-left,
  .bl-materials {
    padding: 40px 16px;
  }

  .bl-hero h1 {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -0.5px;
  }

  .bl-feed h2,
  .bl-social h2,
  .bl-materials h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .bl-grid,
  .bl-ig {
    grid-template-columns: 1fr;
  }

  .bl-hero-media img {
    width: min(280px, 80vw);
    height: auto;
    aspect-ratio: 1;
  }

  .bl-pager {
    flex-wrap: wrap;
    gap: 8px;
  }
}
