/* =========================================
   Page Hero
========================================= */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, #f3f7ef 0%, #f7f5ef 72%);
padding: 84px 0;margin-bottom:50px;
}

.page-hero__inner {
  display: block;
}

.page-hero__main {
  min-width: 0;
}

.page-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--color-main);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero__title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.page-hero__title-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  transform: translateY(1px);
}

.page-hero__title-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero__title-icon svg * {
  stroke: currentColor;
}

.page-hero__title {
  margin: 0;
  min-width: 0;
  color: var(--color-main);
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: 0.03em;
}

.page-hero__lead {
  margin: 18px 0 0;
  max-width: 42em;
  color: var(--color-text-sub);
  font-size: 1rem;
  line-height: 1.95;
}

/* =========================================
   Breadcrumb
========================================= */
.page-hero .breadcrumb,
.page-hero .breadcrumbs,
.page-hero .breadcrumb ol,
.page-hero .breadcrumb ul,
.page-hero .breadcrumbs ol,
.page-hero .breadcrumbs ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: var(--color-text-faint);
  font-size: 0.82rem;
  line-height: 1.6;
}

.page-hero .breadcrumb li,
.page-hero .breadcrumbs li {
  display: inline-flex;
  align-items: center;
  list-style: none;
}

.page-hero .breadcrumb li::marker,
.page-hero .breadcrumbs li::marker {
  content: none;
}

.page-hero .breadcrumb a,
.page-hero .breadcrumbs a {
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--ease-standard), opacity var(--ease-standard);
}

.page-hero .breadcrumb a:hover,
.page-hero .breadcrumbs a:hover {
  color: var(--color-main-dark);
  opacity: 1;
}

.page-hero .breadcrumb > *:not(:last-child)::after,
.page-hero .breadcrumbs > *:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: var(--color-text-faint);
  font-size: 0.9em;
  line-height: 1;
}

.page-hero .breadcrumb .current,
.page-hero .breadcrumbs .current,
.page-hero .breadcrumb [aria-current="page"],
.page-hero .breadcrumbs [aria-current="page"] {
  color: var(--color-text-sub);
  font-weight: 600;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-list li {
  list-style: none;
}

.breadcrumb-separator {
  color: var(--color-text-faint);
  font-size: 0.9em;
  line-height: 1;
}

/* =========================================
   Split Variant
========================================= */
.page-hero--split .page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 36px;
  align-items: start;
}

.page-hero__side {
  min-width: 0;
  padding-top: 8px;
}

.page-hero__meta {
  display: grid;
  gap: 14px;
}

.page-hero__meta-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
}

.page-hero__meta-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-round);
  color: var(--color-text-sub);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background: var(--color-surface);
}

.page-hero__meta-value {
  color: var(--color-text-sub);
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-hero__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  padding-top: 22px;
}

.page-hero__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color var(--ease-standard), opacity var(--ease-standard);
}

.page-hero__link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-main-soft);
  box-shadow: inset 0 0 0 2px var(--color-main);
  flex-shrink: 0;
}

.page-hero__link:hover {
  color: var(--color-main-dark);
  opacity: 1;
}
/* =========================================
   Tablet
========================================= */
@media (max-width: 1024px) {
  .page-hero {
    padding: 80px 0;
  }

  .page-hero__title {
    font-size: clamp(1.9rem, 4.8vw, 2.9rem);
    line-height: 1.24;
  }

  .page-hero__lead {
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.9;
  }

  .page-hero__title-row {
    gap: 12px;
  }

  .page-hero__title-icon {
    width: 40px;
    height: 40px;
  }

  .page-hero--split .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-content: center;
  }

  .page-hero__side {
    padding-top: 0;
  }

  .page-hero__links {
    margin-top: 18px;
    padding-top: 18px;
  }
}

/* =========================================
   Mobile
========================================= */
@media (max-width: 767px) {
  .page-hero {
    padding: 50px 0;
  }

  .page-hero .breadcrumb,
  .page-hero .breadcrumbs,
  .page-hero .breadcrumb ol,
  .page-hero .breadcrumb ul,
  .page-hero .breadcrumbs ol,
  .page-hero .breadcrumbs ul {
    gap: 4px 8px;
    margin-bottom: 36px;
    font-size: 0.76rem;
  }

  .page-hero .breadcrumb > *:not(:last-child)::after,
  .page-hero .breadcrumbs > *:not(:last-child)::after {
    margin-left: 8px;
  }

  .page-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .page-hero__title-row {
    gap: 10px;
    align-items: flex-start;
  }

  .page-hero__title-icon {
    width: 32px;
    height: 32px;
    transform: translateY(4px);
  }

  .page-hero__title {
    font-size: 1.85rem;
    line-height: 1.3;
  }

  .page-hero__lead {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .page-hero__meta {
    gap: 12px;
  }

  .page-hero__meta-value {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .page-hero__links {
    gap: 10px 14px;
  }

  .page-hero__link {
    font-size: 0.88rem;
  }
}
/* =========================================
   Page Section Head
========================================= */
.page-section-head {
  margin-bottom: 20px;
}

.page-section-head--with-action {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.page-section-head__main {
  min-width: 0;
}

.page-section-title {
  position: relative;
  margin: 0;
  padding-bottom: 10px;
  color: var(--color-text);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.page-section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2em;
  height: 3px;
  background: var(--color-main);
}

.page-section-lead {
  margin: 14px 0 0;
  max-width: 58em;
  color: var(--color-text-sub);
  font-size: 0.98rem;
  line-height: 1.9;
}

@media (max-width: 1024px) {
  .page-section-head {
    margin-bottom: 18px;
  }

  .page-section-head--with-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .page-section-title {
    font-size: clamp(1.5rem, 3.8vw, 2rem);
  }

  .page-section-lead {
    font-size: 0.94rem;
    line-height: 1.85;
  }
}

@media (max-width: 767px) {
  .page-section-head {
    margin-bottom: 22px;
  }

  .page-section-title {
    font-size: 1.38rem;
    line-height: 1.5;
  }

  .page-section-title::before {
  }

  .page-section-lead {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
@media (max-width: 767px) {
  .page-hero__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .page-hero__title-icon {
    margin: 0;
  }

  .page-hero__title {
    text-align: center;
  }

  .page-hero__main {
    text-align: center;
  }

  .page-hero__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
