.hmhi-root {
  --hmhi-navy: #122632;
  --hmhi-deep: #182f3b;
  --hmhi-copper: #c79b77;
  --hmhi-cream: #f7f5f0;
  --hmhi-ink: #20343d;
  --hmhi-muted: #66757a;
  --hmhi-line: #ddd9d0;
  color: var(--hmhi-ink);
  background: var(--hmhi-cream);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.hmhi-root *,
.hmhi-header * {
  box-sizing: border-box;
}

.hmhi-root a,
.hmhi-header a {
  color: inherit;
}

.hmhi-root a:focus-visible,
.hmhi-header a:focus-visible,
.hmhi-header summary:focus-visible,
.hmhi-root button:focus-visible,
.hmhi-header button:focus-visible {
  outline: 3px solid var(--hmhi-copper);
  outline-offset: 4px;
}

.hmhi-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--hmhi-cream);
  background: var(--hmhi-navy);
  border-bottom: 1px solid rgba(199, 155, 119, 0.45);
}

.hmhi-header__inner {
  width: min(100% - 48px, 1280px);
  min-height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hmhi-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.hmhi-brand img {
  display: block;
  width: min(220px, 42vw);
  height: auto;
}

.hmhi-header__tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hmhi-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e5d9ce;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hmhi-language-switch a {
  text-decoration: none;
}

.hmhi-language-switch a[aria-current="page"] {
  color: var(--hmhi-copper);
}

.hmhi-menu {
  position: relative;
}

.hmhi-menu > summary {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(199, 155, 119, 0.8);
  border-radius: 3px;
  list-style: none;
  cursor: pointer;
}

.hmhi-menu > summary::-webkit-details-marker {
  display: none;
}

.hmhi-menu > summary::after {
  width: 20px;
  height: 14px;
  background: linear-gradient(var(--hmhi-copper), var(--hmhi-copper)) center 0 / 20px 2px no-repeat,
    linear-gradient(var(--hmhi-copper), var(--hmhi-copper)) center / 20px 2px no-repeat,
    linear-gradient(var(--hmhi-copper), var(--hmhi-copper)) center 100% / 20px 2px no-repeat;
  content: "";
}

.hmhi-menu[open] > summary::after {
  background: linear-gradient(45deg, transparent 46%, var(--hmhi-copper) 47%, var(--hmhi-copper) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--hmhi-copper) 47%, var(--hmhi-copper) 53%, transparent 54%);
}

.hmhi-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  padding: 8px 0;
  border: 1px solid var(--hmhi-copper);
  background: var(--hmhi-navy);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.hmhi-menu__panel a {
  padding: 14px 18px;
  color: var(--hmhi-cream);
  font-size: 17px;
  text-decoration: none;
}

.hmhi-menu__panel a:hover {
  color: var(--hmhi-copper);
  background: rgba(255, 255, 255, 0.04);
}

.hmhi-root .hmhi-page {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
  padding: clamp(56px, 8vw, 104px) 0 96px;
}

.hmhi-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.hmhi-eyebrow {
  margin: 0 0 14px;
  color: #8c6548;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hmhi-title {
  margin: 0;
  color: var(--hmhi-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hmhi-subtitle {
  margin: 18px 0 0;
  color: var(--hmhi-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
}

.hmhi-intro__copy {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--hmhi-muted);
  font-size: 17px;
}

.hmhi-rule {
  width: 72px;
  height: 2px;
  margin-top: 26px;
  background: var(--hmhi-copper);
}

.hmhi-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 26px;
  padding: 18px 0;
  border-top: 1px solid var(--hmhi-line);
  border-bottom: 1px solid var(--hmhi-line);
}

.hmhi-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hmhi-filter {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid #c7c5bd;
  border-radius: 2px;
  color: var(--hmhi-deep);
  background: transparent;
  font: inherit;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}

.hmhi-filter:hover {
  border-color: var(--hmhi-copper);
  color: var(--hmhi-navy);
}

.hmhi-filter[aria-pressed="true"] {
  border-color: var(--hmhi-navy);
  color: var(--hmhi-cream);
  background: var(--hmhi-navy);
}

.hmhi-count {
  flex: 0 0 auto;
  color: var(--hmhi-muted);
  font-size: 13px;
}

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

.hmhi-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 270px;
  padding: 26px 26px 24px;
  border: 1px solid #dedbd4;
  border-top: 2px solid var(--hmhi-copper);
  background: #fffefa;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hmhi-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 155, 119, 0.8);
  box-shadow: 0 12px 30px rgba(18, 38, 50, 0.08);
}

.hmhi-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 18px;
  color: var(--hmhi-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hmhi-card__topic {
  color: #825d42;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hmhi-card__source::before {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 8px 3px 0;
  border-radius: 50%;
  background: var(--hmhi-copper);
  content: "";
}

.hmhi-card__title {
  margin: 0 0 20px;
  color: var(--hmhi-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.25;
}

.hmhi-card__title a {
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hmhi-card__title a:hover {
  text-decoration-color: var(--hmhi-copper);
}

.hmhi-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #ebe8e2;
}

.hmhi-card__date {
  color: var(--hmhi-muted);
  font-size: 12px;
}

.hmhi-card__link {
  color: #78583f !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(199, 155, 119, 0.7);
  text-underline-offset: 4px;
}

.hmhi-status {
  padding: 34px 28px;
  border: 1px solid var(--hmhi-line);
  border-left: 3px solid var(--hmhi-copper);
  color: var(--hmhi-muted);
  background: #fffefa;
}

.hmhi-status[hidden],
.hmhi-card[hidden] {
  display: none !important;
}

.hmhi-status h2 {
  margin: 0 0 8px;
  color: var(--hmhi-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
}

.hmhi-status p {
  max-width: 620px;
  margin: 0;
}

.hmhi-status a {
  color: #78583f;
  font-weight: 600;
  text-decoration-color: var(--hmhi-copper);
  text-underline-offset: 3px;
}

.hmhi-site-footer {
  padding: 34px 24px;
  border-top: 1px solid rgba(199, 155, 119, 0.55);
  color: #e1e7e8;
  background: var(--hmhi-navy);
  font-size: 14px;
}

.hmhi-site-footer__inner {
  width: min(100%, 1280px);
  margin-inline: auto;
}

@media (max-width: 1023px) {
  .hmhi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hmhi-header__inner,
  .hmhi-root .hmhi-page {
    width: calc(100% - 40px);
  }

  .hmhi-header__inner {
    min-height: 82px;
    gap: 12px;
  }

  .hmhi-brand img {
    width: min(174px, 48vw);
  }

  .hmhi-header__tools {
    gap: 10px;
  }

  .hmhi-root .hmhi-page {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .hmhi-intro {
    margin-bottom: 32px;
  }

  .hmhi-intro__copy {
    font-size: 16px;
  }

  .hmhi-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hmhi-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .hmhi-card {
    min-height: 0;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmhi-card {
    transition: none;
  }
}

.hmhi {
  --hmhi-navy: #122632;
  --hmhi-deep: #182f3b;
  --hmhi-copper: #c79b77;
  --hmhi-cream: #f7f5f0;
  --hmhi-ink: #20343d;
  --hmhi-muted: #66757a;
  --hmhi-line: #ddd9d0;
  display: block;
  min-height: 100vh;
  color: var(--hmhi-ink);
  background: var(--hmhi-cream);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.hmhi *,
.hmhi *::before,
.hmhi *::after {
  box-sizing: border-box;
}

.hmhi a:focus-visible,
.hmhi button:focus-visible,
.hmhi summary:focus-visible {
  outline: 3px solid var(--hmhi-copper);
  outline-offset: 4px;
}

.hmhi-header {
  width: 100%;
  min-height: 96px;
  padding: 14px max(24px, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--hmhi-cream);
  background: var(--hmhi-navy);
  border-bottom: 1px solid rgba(199, 155, 119, 0.45);
}

.hmhi-language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: #e5d9ce;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hmhi-language a {
  text-decoration: none;
}

.hmhi-language a[aria-current="page"] {
  color: var(--hmhi-copper);
}

.hmhi-menu {
  position: relative;
}

.hmhi-menu summary {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(199, 155, 119, 0.8);
  border-radius: 3px;
  list-style: none;
  cursor: pointer;
}

.hmhi-menu summary::-webkit-details-marker {
  display: none;
}

.hmhi-menu summary span {
  display: none;
}

.hmhi-menu summary::after {
  width: 20px;
  height: 14px;
  background: linear-gradient(var(--hmhi-copper), var(--hmhi-copper)) center 0 / 20px 2px no-repeat,
    linear-gradient(var(--hmhi-copper), var(--hmhi-copper)) center / 20px 2px no-repeat,
    linear-gradient(var(--hmhi-copper), var(--hmhi-copper)) center 100% / 20px 2px no-repeat;
  content: "";
}

.hmhi-menu[open] summary::after {
  background: linear-gradient(45deg, transparent 46%, var(--hmhi-copper) 47%, var(--hmhi-copper) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--hmhi-copper) 47%, var(--hmhi-copper) 53%, transparent 54%);
}

.hmhi-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  padding: 8px 0;
  border: 1px solid var(--hmhi-copper);
  background: var(--hmhi-navy);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.hmhi-menu nav a {
  padding: 14px 18px;
  color: var(--hmhi-cream);
  font-size: 17px;
  text-decoration: none;
}

.hmhi-menu nav a:hover {
  color: var(--hmhi-copper);
  background: rgba(255, 255, 255, 0.04);
}

.hmhi-main {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
  padding: clamp(56px, 8vw, 104px) 0 96px;
}

.hmhi-preview-notice {
  padding: 14px 20px;
  color: #122632;
  background: #c79b77;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.hmhi-intro h1 {
  margin: 0;
  color: var(--hmhi-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hmhi-intro > p:not(.hmhi-eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--hmhi-muted);
  font-size: 17px;
}

.hmhi-news {
  margin-top: 42px;
}

.hmhi-filters {
  border-bottom: 1px solid var(--hmhi-line);
}

.hmhi-filters button {
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid #c7c5bd;
  border-radius: 2px;
  color: var(--hmhi-deep);
  background: transparent;
  font: inherit;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}

.hmhi-filters button:hover {
  border-color: var(--hmhi-copper);
}

.hmhi-filters button[aria-pressed="true"] {
  border-color: var(--hmhi-navy);
  color: var(--hmhi-cream);
  background: var(--hmhi-navy);
}

.hmhi-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0 0 18px;
  color: var(--hmhi-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hmhi-card-meta > span {
  color: #825d42;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hmhi-card h2 {
  margin: 0 0 20px;
  color: var(--hmhi-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.25;
}

.hmhi-card h2 a {
  color: inherit;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.hmhi-card h2 a:hover {
  text-decoration-color: var(--hmhi-copper);
}

.hmhi-card-source {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid #ebe8e2;
  color: var(--hmhi-muted);
  font-size: 12px;
  line-height: 1.55;
}

.hmhi-empty {
  margin: 24px 0 0;
  padding: 30px;
  border: 1px solid var(--hmhi-line);
  border-left: 3px solid var(--hmhi-copper);
  color: var(--hmhi-muted);
  background: #fffefa;
}

.hmhi-empty[hidden],
.hmhi-card[hidden] {
  display: none !important;
}

.hmhi-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 32px max(24px, calc((100% - 1280px) / 2));
  border-top: 1px solid rgba(199, 155, 119, 0.55);
  color: #e1e7e8;
  background: var(--hmhi-navy);
  font-size: 14px;
}

.hmhi-footer a {
  color: #e1e7e8;
  text-decoration-color: var(--hmhi-copper);
  text-underline-offset: 3px;
}

.hmhi-footer a:hover {
  color: var(--hmhi-copper);
}

@media (max-width: 680px) {
  .hmhi-header {
    min-height: 82px;
    padding: 10px 20px;
    gap: 12px;
  }

  .hmhi-brand img {
    width: min(174px, 48vw);
  }

  .hmhi-main {
    width: calc(100% - 40px);
    padding: 54px 0 64px;
  }

  .hmhi-intro > p:not(.hmhi-eyebrow) {
    font-size: 16px;
  }

  .hmhi-news {
    margin-top: 32px;
  }

  .hmhi-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 16px;
  }

  .hmhi-filters button {
    padding-inline: 12px;
  }

  .hmhi-card {
    min-height: 0;
    padding: 22px;
  }

  .hmhi-footer {
    padding: 28px 20px;
  }
}

.hmhi-root .hmhi-header {
  display: block;
  padding: 0;
}

body.hmhi-page {
  margin: 0;
  padding: 0;
}

.hmhi-root .hmhi-main {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hmhi-root .hmhi-subtitle {
  display: block;
  margin: 18px 0 0;
  color: var(--hmhi-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
}

.hmhi-root .hmhi-intro__copy {
  display: block;
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--hmhi-muted);
  font-size: 17px;
  line-height: 1.65;
}

.hmhi-root .hmhi-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  padding: 8px 0;
  border: 1px solid var(--hmhi-copper);
  background: var(--hmhi-navy);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.hmhi-root .hmhi-menu__panel a {
  padding: 14px 18px;
  color: var(--hmhi-cream);
  font-size: 17px;
  text-decoration: none;
}

.hmhi-root .hmhi-menu__panel a:hover {
  color: var(--hmhi-copper);
  background: rgba(255, 255, 255, 0.04);
}

.hmhi-teaser {
  --hmhi-navy: #122632;
  --hmhi-deep: #182f3b;
  --hmhi-copper: #c79b77;
  --hmhi-cream: #f7f5f0;
  --hmhi-muted: #c6d0d3;
  width: 100%;
  padding: clamp(56px, 7vw, 92px) 24px;
  color: var(--hmhi-cream);
  background: var(--hmhi-navy);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.hmhi-teaser,
.hmhi-teaser * {
  box-sizing: border-box;
}

.hmhi-teaser__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.hmhi-teaser__eyebrow {
  margin: 0 0 14px;
  color: var(--hmhi-copper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hmhi-teaser__heading {
  max-width: 820px;
  margin: 0;
  color: var(--hmhi-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hmhi-teaser__selection {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--hmhi-muted);
  font-size: 16px;
  line-height: 1.65;
}

.hmhi-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.hmhi-teaser__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(199, 155, 119, 0.3);
  border-top: 2px solid var(--hmhi-copper);
  background: var(--hmhi-deep);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hmhi-teaser__card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 155, 119, 0.8);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hmhi-teaser__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0 0 18px;
  color: var(--hmhi-muted);
  font-size: 12px;
  line-height: 1.5;
}

.hmhi-teaser__meta > :first-child {
  color: var(--hmhi-copper);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hmhi-teaser__title {
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--hmhi-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.hmhi-teaser__title a {
  color: inherit;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hmhi-teaser__title a:hover {
  text-decoration-color: var(--hmhi-copper);
}

.hmhi-teaser__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 11px 18px;
  border: 1px solid var(--hmhi-copper);
  border-radius: 2px;
  color: var(--hmhi-cream);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.hmhi-teaser__action:hover {
  color: var(--hmhi-navy);
  background: var(--hmhi-copper);
}

.hmhi-teaser a:focus-visible {
  outline: 3px solid var(--hmhi-cream);
  outline-offset: 4px;
}

@media (max-width: 1023px) {
  .hmhi-teaser__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hmhi-teaser {
    padding: 52px 20px 60px;
  }

  .hmhi-teaser__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 26px;
  }

  .hmhi-teaser__card {
    min-height: 0;
    padding: 22px;
  }

  .hmhi-teaser__action {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmhi-teaser__card,
  .hmhi-teaser__action {
    transition: none;
  }
}
