.ink-page {
  background: #f2f2f4;
  color: #171717;
}

.ink-page-hero {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.ink-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.5));
}

.ink-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 18px 0 22px;
}

.ink-page-hero .ink-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.ink-page-hero .ink-breadcrumb a {
  color: #f7d26f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ink-page-hero .ink-breadcrumb a:hover {
  color: #fff0bf;
  border-color: currentColor;
}

.ink-page-hero .ink-breadcrumb span {
  color: #fff;
}

.ink-page-hero .ink-breadcrumb .sep-icon {
  color: #ffd977;
}

.ink-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.8vw, 48px);
}

.ink-page-content-wrap {
  padding: 24px 0 44px;
}

.ink-page-content {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  padding: 20px 22px;
}

.ink-page-content :is(p, li, blockquote, figcaption) {
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
  text-align: justify;
}

.ink-page-content :is(h1, h2, h3, h4, h5, h6) {
  color: #1f1f1f;
}

@media (max-width: 740px) {
  .ink-page-content {
    padding: 14px;
    border-radius: 12px;
  }

  .ink-page-hero .ink-breadcrumb {
    font-size: 15px;
  }
}
