/* MH hub components */

html:has(.mh-layout-root),
body:has(.mh-layout-root) {
  margin: 0;
  padding: 0;
  background: #f0e8d4;
}

.mh-layout-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mh-layout-main {
  flex: 1;
  position: relative;
  z-index: 10;
}

.mh-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mh-skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: var(--mhgu-red);
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
}

/* --- Navbar --- */
.mh-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
}

.mh-navbar__bar {
  background: #e8dcc4;
  border-bottom: 2px solid #c0b090;
}

.mh-navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .mh-navbar__inner {
    padding: 0 1.5rem;
  }
}

.mh-navbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mh-navbar__brand-img {
  height: 2.5rem;
  width: auto;
}

.mh-navbar__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .mh-navbar__nav {
    display: flex;
  }
}

.mh-nav-link {
  font-family: "Work Sans", "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #3a2e20;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.mh-nav-link:hover {
  color: #d8a030;
}

.mh-nav-link--active {
  color: #8b3a3a;
  border-bottom-color: #8b3a3a;
}

.mh-nav-link--muted {
  color: #7a6e5e;
}

.mh-nav-link--muted:hover {
  color: #3a8fa0;
}

.mh-nav-link--mobile {
  font-size: 1.125rem;
}

.mh-navbar__sep {
  width: 1px;
  height: 1.25rem;
  background: #c0b090;
}

.mh-navbar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  border: none;
  color: #3a2e20;
  cursor: pointer;
}

.mh-navbar__toggle svg[hidden] {
  display: none;
}

@media (min-width: 640px) {
  .mh-navbar__toggle {
    display: none;
  }
}

.mh-navbar__mobile {
  position: fixed;
  top: calc(3.5rem + 16px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  background: #f0e8d4;
  overflow-y: auto;
}

.mh-navbar__mobile-list {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}

.mh-navbar__mobile-sep {
  height: 1px;
  background: #c0b090;
  margin: 0.5rem 0;
}

.mh-navbar__dropdown {
  position: relative;
}

.mh-navbar__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Work Sans", "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #3a2e20;
  padding: 6px 0;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.mh-navbar__dropdown-trigger:hover,
.mh-navbar__dropdown-trigger--active,
.mh-navbar__dropdown--open .mh-navbar__dropdown-trigger {
  color: #8b3a3a;
}

.mh-navbar__dropdown-trigger--active,
.mh-navbar__dropdown--open .mh-navbar__dropdown-trigger {
  border-bottom-color: #8b3a3a;
}

.mh-navbar__dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}

.mh-navbar__dropdown--open .mh-navbar__dropdown-chevron {
  transform: rotate(180deg);
}

.mh-navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 12rem;
  padding: 6px;
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-left: 3px solid #d8a030;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(58, 46, 32, 0.12);
  z-index: 60;
}

.mh-navbar__dropdown-link {
  display: block;
  padding: 8px 12px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3a2e20;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
}

.mh-navbar__dropdown-link:hover,
.mh-navbar__dropdown-link:focus-visible {
  background: rgba(216, 160, 48, 0.15);
  color: #8b3a3a;
  outline: none;
}

.mh-navbar__dropdown-link--active {
  color: #8b3a3a;
  background: rgba(139, 58, 58, 0.08);
}

.mh-navbar__mobile-group {
  border: 1px solid #c0b090;
  border-left: 3px solid #d8a030;
  border-radius: 4px;
  background: #f5ecd9;
}

.mh-navbar__mobile-group-summary {
  list-style: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #3a2e20;
  padding: 0.75rem 1rem;
}

.mh-navbar__mobile-group-summary::-webkit-details-marker {
  display: none;
}

.mh-navbar__mobile-group-summary--active {
  color: #8b3a3a;
}

.mh-navbar__mobile-group-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem 1rem 1.5rem;
}

.mh-hunter-advice-index-grid {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .mh-hunter-advice-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mh-hunter-advice-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-left: 4px solid #3a8fa0;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.mh-hunter-advice-card:hover,
.mh-hunter-advice-card:focus-visible {
  border-left-color: #d8a030;
  transform: translateY(-1px);
  outline: none;
}

.mh-hunter-advice-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mh-hunter-advice-card__name {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #8b3a3a;
  margin: 0;
}

.mh-hunter-advice-card__twitch {
  color: #9146ff;
}

.mh-hunter-advice-card__summary {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #3a2e20;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.mh-hunter-advice-card__cta {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3a8fa0;
}

.mh-hunter-advice-show .mh-hunter-name {
  margin-top: 0;
}

.mh-hunter-advice-resources-link {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* --- Components/Mh/MhFooter.vue --- */
.mh-layout .mh-footer {
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.mh-layout .mh-footer__banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 1rem 0;
}

.mh-layout .mh-footer__banner-img {
  display: block;
  width: auto;
  max-width: none;
  height: 10rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

@media (min-width: 640px) {
  .mh-layout .mh-footer__banner-img {
    height: 12rem;
  }
}

@media (min-width: 768px) {
  .mh-layout .mh-footer__banner-img {
    height: 14rem;
  }
}

.mh-layout .mh-footer__gradient {
  height: 0.25rem;
  background-image: linear-gradient(to right, #5bb8c9, #d8a030, #8b3a3a);
}

.mh-layout .mh-footer__panel {
  background: #2e2820;
  padding: 2.5rem 0;
}

.mh-layout .mh-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .mh-layout .mh-footer__inner {
    padding: 0 1.5rem;
  }
}

.mh-layout .mh-footer__brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mh-layout .mh-footer__brand-title {
  font-family: "Cinzel Decorative", serif;
  color: #e8dcc4;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.mh-layout .mh-footer__brand-tagline {
  font-family: "Work Sans", sans-serif;
  color: #7a6e5e;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0.25rem 0 0;
}

.mh-layout .mh-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mh-layout .mh-footer__social-link,
.mh-layout .mh-footer__link {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #7a6e5e;
  text-decoration: none;
  transition: color 0.15s ease;
}

.mh-layout .mh-footer__social-link:hover,
.mh-layout .mh-footer__link:hover {
  color: #5bb8c9;
}

.mh-layout .mh-footer__social-link:visited,
.mh-layout .mh-footer__link:visited {
  color: #7a6e5e;
}

.mh-layout .mh-footer__social-link:visited:hover,
.mh-layout .mh-footer__link:visited:hover {
  color: #5bb8c9;
}

.mh-layout .mh-footer__social-link:focus-visible,
.mh-layout .mh-footer__link:focus-visible {
  outline: 2px solid #d8a030;
  outline-offset: 2px;
}

.mh-layout .mh-footer__divider {
  height: 1px;
  background: #4a3c2c;
  margin-bottom: 1rem;
}

.mh-layout .mh-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .mh-layout .mh-footer__bottom {
    flex-direction: row;
    align-items: center;
  }
}

.mh-layout .mh-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mh-layout .mh-footer__label {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a89880;
  flex-basis: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .mh-layout .mh-footer__label {
    flex-basis: auto;
    text-align: left;
  }
}

.mh-layout .mh-footer__sep {
  display: inline-block;
  width: 1px;
  height: 0.75rem;
  background: #4a3c2c;
  flex-shrink: 0;
}

.mh-layout .mh-footer__copy {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #7a6e5e;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.mh-layout .mh-footer__status {
  background: #1a1410;
  padding: 0.5rem 1rem;
  text-align: center;
}

.mh-layout .mh-footer__status-text {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #5bb8c9;
  margin: 0;
}

/* --- Hub hero --- */
.mh-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.mh-hero__bg {
  position: absolute;
  inset: 0;
}

.mh-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240, 232, 212, 0.7),
    rgba(240, 232, 212, 0.5),
    rgba(240, 232, 212, 0.9)
  );
}

.mh-hero__content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .mh-hero__content {
    padding: 0 1.5rem;
  }
}

.mh-hero__title {
  font-family: "Cinzel Decorative", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #3a2e20;
  margin: 0 0 0.75rem;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.4));
}

@media (min-width: 640px) {
  .mh-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .mh-hero__title {
    font-size: 3.75rem;
  }
}

.mh-hero__tagline {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4a3c2c;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .mh-hero__tagline {
    font-size: 1.125rem;
  }
}

.mh-hero__border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #c0b090;
}

/* --- Page shell --- */
.mh-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .mh-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.mh-page--narrow {
  max-width: 56rem;
}

.mh-page--article {
  max-width: 56rem;
}

.mh-page-header {
  margin-bottom: 2.5rem;
}

.mh-page-lede {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #7a6e5e;
  margin: 1rem 0 0;
}

.mh-section {
  padding: 3rem 0;
}

.mh-section--compact {
  padding: 1rem 0;
}

.mh-section__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .mh-section__inner {
    padding: 0 1.5rem;
  }
}

.mh-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mh-section__link {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3a8fa0;
  text-decoration: none;
  transition: color 0.15s;
}

.mh-section__link:hover {
  color: #d8a030;
}

.mh-heading-2 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #8b3a3a;
  margin: 0 0 1.5rem;
}

.mh-empty {
  text-align: center;
  padding: 2.5rem;
}

.mh-empty p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #7a6e5e;
  margin: 0;
}

.mh-empty--large {
  padding: 5rem 2.5rem;
}

.mh-empty--large p {
  font-size: 1.125rem;
}

/* --- Post card --- */
.mh-post-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mh-post-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .mh-post-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mh-post-grid--articles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mh-post-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f0e8d4 0%, #e8dcc4 100%);
  border: 2px solid #c0b090;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: #3a2e20;
  transition: all 0.2s;
}

.mh-post-card:hover {
  border-color: #5bb8c9;
  box-shadow: 0 4px 16px rgba(91, 184, 201, 0.2);
  transform: translateY(-2px);
}

.mh-post-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #c0b090;
  background: #e8dcc4;
}

.mh-post-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.mh-post-card:hover .mh-post-card__cover-img {
  transform: scale(1.03);
}

.mh-post-card__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.mh-post-card__title {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mh-post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.mh-post-card__tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
}

.mh-post-card__date {
  font-size: 0.75rem;
  color: #7a6e5e;
  margin-left: auto;
  white-space: nowrap;
}

/* --- Third Cart cards --- */
.mh-post-grid--cart {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.mh-cart-card {
  display: flex;
  flex-direction: column;
  background: #f0e8d4;
  border: 1px solid #c0b090;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}

.mh-cart-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 40, 20, 0.15);
}

.mh-cart-card__cover {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e0d4bc;
}

.mh-cart-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

.mh-cart-card:hover .mh-cart-card__cover-img {
  transform: scale(1.03);
}

.mh-cart-card__body {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mh-cart-card__title {
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #3a2e1e;
  margin: 0;
  line-height: 1.3;
}

.mh-cart-card__date {
  font-size: 0.75rem;
  color: #7a6e5e;
}

.mh-page--cart {
  max-width: 800px;
}

.mh-cart-show__header {
  margin-bottom: 1.5rem;
}

.mh-cart-show__title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #3a2e1e;
  margin: 0;
  line-height: 1.2;
}

.mh-cart-show__image-wrap {
  margin-bottom: 1.5rem;
}

.mh-cart-show__image-link {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #c0b090;
  background: #e0d4bc;
  cursor: zoom-in;
}

.mh-cart-show__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
}

.mh-cart-show__description {
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a2e1e;
}

.mh-cart-show__description p {
  margin: 0;
}

.mh-cart-show__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c0b090;
}

.mh-cart-show__nav-link {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3a8fa0;
  text-decoration: none;
  transition: color 0.15s;
}

.mh-cart-show__nav-link:hover {
  color: #d8a030;
}

.mh-cart-show__nav-link--disabled {
  color: #a89880;
  cursor: default;
}

/* --- Fashion Gallery --- */
.mh-post-grid--fashion {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.mh-fashion-card {
  display: flex;
  flex-direction: column;
  background: #f0e8d4;
  border: 1px solid #c0b090;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}

.mh-fashion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 40, 20, 0.15);
}

.mh-fashion-card__cover {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e0d8c4;
}

.mh-fashion-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

.mh-fashion-card:hover .mh-fashion-card__cover-img {
  transform: scale(1.03);
}

.mh-fashion-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 1rem 1rem;
}

.mh-fashion-card__game {
  font-family: "Work Sans", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3a8fa0;
}

.mh-fashion-card__title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #3a3020;
}

.mh-fashion-card__date {
  font-size: 0.75rem;
  color: #7a6e5e;
}

.mh-fashion-show__header {
  margin-bottom: 1.5rem;
}

.mh-fashion-show__game {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a8fa0;
  margin: 0 0 0.5rem;
}

.mh-fashion-show__title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #3a3020;
}

.mh-fashion-show__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mh-fashion-show__gallery-link {
  display: block;
  border: 1px solid #c0b090;
  border-radius: 2px;
  overflow: hidden;
  background: #f0e8d4;
}

.mh-fashion-show__gallery-img {
  display: block;
  width: 100%;
  height: auto;
}

.mh-fashion-show__description {
  margin-bottom: 1.5rem;
}

.mh-fashion-show__description p {
  margin: 0;
}

.mh-fashion-show__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #c0b090;
}

.mh-fashion-show__nav-link {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6e5a44;
  text-decoration: none;
}

.mh-fashion-show__nav-link:hover {
  color: #d8a030;
}

.mh-fashion-show__nav-link--disabled {
  color: #a89880;
  cursor: default;
}

/* --- Filter pills --- */
.mh-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mh-filter-pill {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid #c0b090;
  border-radius: 2px;
  background: #f0e8d4;
  color: #6e5a44;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}

.mh-filter-pill:hover {
  border-color: #5bb8c9;
  color: #3a8fa0;
}

.mh-filter-pill--active {
  background: linear-gradient(180deg, #5bb8c9 0%, #4aa8b8 100%);
  border-color: #3a8fa0;
  color: #fff;
}

/* --- Compendium banner --- */
.mh-compendium-banner {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mh-compendium-banner__panel {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  transition: border-color 0.15s;
}

@media (min-width: 640px) {
  .mh-compendium-banner__panel {
    padding: 2.5rem;
  }
}

.mh-compendium-banner:hover .mh-compendium-banner__panel {
  border-color: #d8a030;
}

.mh-compendium-banner__corner {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-color: #d8a030;
}

.mh-compendium-banner__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
}

.mh-compendium-banner__corner--tr {
  top: 0;
  right: 0;
  border-top: 2px solid;
  border-right: 2px solid;
}

.mh-compendium-banner__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.mh-compendium-banner__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.mh-compendium-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mh-compendium-banner__content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.mh-compendium-banner__text {
  flex: 1;
}

.mh-compendium-banner__title {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3a2e20;
  margin: 0 0 0.5rem;
}

@media (min-width: 640px) {
  .mh-compendium-banner__title {
    font-size: 1.875rem;
  }
}

.mh-compendium-banner__desc {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #7a6e5e;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0;
}

.mh-compendium-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #d8a030;
  transition: color 0.15s;
}

.mh-compendium-banner:hover .mh-compendium-banner__cta {
  color: #b08020;
}

.mh-compendium-banner__cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.15s;
}

.mh-compendium-banner:hover .mh-compendium-banner__cta svg {
  transform: translateX(4px);
}

/* --- Compendium link card --- */
.mh-compendium-link {
  display: block;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.mh-compendium-link:hover {
  border-color: #5bb8c9;
}

.mh-compendium-link--static {
  opacity: 0.7;
  cursor: default;
}

.mh-compendium-link__title {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3a2e20;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.mh-compendium-link:hover .mh-compendium-link__title {
  color: #3a8fa0;
}

.mh-compendium-link__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #7a6e5e;
  line-height: 1.55;
  margin: 0;
}

.mh-compendium-link__mirror {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  color: #d8a030;
  text-decoration: none;
}

.mh-compendium-link__mirror:hover {
  color: #b08020;
}

.mh-compendium-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mh-compendium-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mh-compendium-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mh-compendium-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .mh-compendium-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mh-compendium-section + .mh-compendium-section {
  margin-top: 3rem;
}

/* --- Game stats --- */
.mh-game-stats {
  padding: 3rem 0;
}

.mh-game-stats__panel {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-radius: 2px;
}

@media (min-width: 640px) {
  .mh-game-stats__panel {
    padding: 2.5rem 1.5rem;
    border-radius: 0;
  }
}

.mh-game-stats__title {
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #5bb8c9;
  margin: 0 0 2rem;
}

.mh-game-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mh-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mh-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mh-game-card {
  background: #3a3028;
  border: 1px solid #5a4a3a;
  border-radius: 2px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
}

.mh-game-card__cover {
  width: 4rem;
  height: 5.625rem;
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid #d8a030;
}

.mh-game-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-game-card__cover-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e2820;
  font-size: 0.75rem;
  color: #7a6e5e;
}

.mh-game-card__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mh-game-card__title {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e8dcc4;
  line-height: 1.25;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mh-game-card__hours {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #d8a030;
  margin: 0 0 0.25rem;
}

.mh-game-card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.mh-game-card__platform {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2e2820;
  background: #5bb8c9;
  padding: 2px 6px;
  border-radius: 2px;
}

/* --- Article show --- */
.mh-article-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 2px solid #c0b090;
  border-radius: 2px;
}

.mh-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mh-article-header {
  margin-bottom: 2rem;
}

.mh-article-title {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #3a2e20;
  margin: 0 0 0.75rem;
}

@media (min-width: 640px) {
  .mh-article-title {
    font-size: 1.875rem;
  }
}

.mh-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #7a6e5e;
}

.mh-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.mh-article-tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.mh-article-tag:hover {
  opacity: 0.85;
}

.mh-article-body {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .mh-article-body {
    padding: 2rem;
  }
}

.mh-related {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #c0b090;
}

.mh-back-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3a8fa0;
  text-decoration: none;
  transition: color 0.15s;
}

.mh-back-link:hover {
  color: #d8a030;
}

.mh-preview-banner {
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  border: 2px solid #d8a030;
  border-radius: 4px;
  background: #fff8e8;
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #5a4a20;
}

/* --- Guide banners --- */
.mh-wip-card,
.mh-warn-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 4px;
  padding: 1rem 1.25rem;
}

.mh-wip-card {
  background: #eef6f7;
  border-left: 4px solid #3a8fa0;
}

.mh-warn-card {
  background: linear-gradient(135deg, #fef3e6 0%, #fce8d6 100%);
  border-left: 4px solid #8b3a3a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mh-wip-icon,
.mh-warn-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
}

.mh-wip-icon {
  background: #3a8fa0;
  color: #eef6f7;
  font-size: 1.125rem;
}

.mh-warn-icon {
  background: #8b3a3a;
  color: #fef3e6;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.25rem;
}

.mh-wip-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3a8fa0;
  margin: 0 0 0.25rem;
}

.mh-warn-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #8b3a3a;
  margin: 0 0 0.25rem;
}

.mh-banner-text {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #3a2e20;
  margin: 0;
  line-height: 1.55;
}

/* --- Pagination (MH theme) --- */
.mh-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.mh-pagination__link,
.mh-pagination__page {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #c0b090;
  border-radius: 2px;
  background: #f0e8d4;
  color: #3a2e20;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.mh-pagination__link:hover {
  border-color: #5bb8c9;
  color: #3a8fa0;
}

.mh-pagination__page--active {
  background: #5bb8c9;
  border-color: #3a8fa0;
  color: #fff;
}

.mh-pagination__gap {
  min-width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(122, 110, 94, 0.5);
}

/* --- MHGU header bar (inline variant) --- */
.mh-header-bar {
  display: inline-block;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.mh-section--hero {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.mh-section--hero-compendium {
  padding-bottom: 3rem;
}

.mh-section--warn {
  padding-bottom: 3rem;
}

/* --- Newbie guide layout --- */
.mh-newbie-guide {
  padding-top: 0;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mh-newbie-panels {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mh-newbie-panel[hidden] {
  display: none !important;
}

.mh-newbie-section + .mh-newbie-section {
  margin-top: 3rem;
}

.scroll-mt-20 {
  scroll-margin-top: 5rem;
}

.mh-guide-heading {
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #8b3a3a;
  margin: 0 0 1rem;
}

.mh-guide-lede {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #3a2e20;
  margin: 0 0 1.5rem;
  max-width: 48rem;
  line-height: 1.55;
}

.mh-guide-lede--tight {
  margin-bottom: 0.75rem;
}

.mh-guide-note {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  color: #7a6e5e;
  margin: 0 0 1rem;
  max-width: 48rem;
  line-height: 1.5;
}

.mh-guide-note--italic {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.mh-guide-note--after-grid {
  margin-top: 1rem;
}

.mh-inline-text-link {
  text-decoration: underline;
  color: inherit;
}

.mh-inline-text-link:hover {
  color: #d8a030;
}

.mh-guide-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mh-guide-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mh-guide-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mh-guide-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mh-compendium-more {
  margin-top: 1.5rem;
}

/* --- Tab navigation --- */
.mh-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-left: 4px solid #d8a030;
  border-radius: 4px;
  padding: 8px;
}

@media (min-width: 640px) {
  .mh-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .mh-tabs {
    grid-template-columns: repeat(6, 1fr);
  }
}

.mh-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 10px 12px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3a2e20;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mh-tab:hover {
  background: rgba(216, 160, 48, 0.12);
  color: #8b3a3a;
}

.mh-tab--active {
  background: #fff7e6;
  border-color: #d8a030;
  color: #8b3a3a;
  box-shadow: 0 1px 2px rgba(139, 58, 58, 0.08);
}

.mh-tab-num {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: #3a8fa0;
  flex-shrink: 0;
}

.mh-tab--active .mh-tab-num {
  color: #d8a030;
}

/* --- Tip card --- */
.mh-tip-card {
  background: #eef6f7;
  border-left: 3px solid #3a8fa0;
  border-radius: 3px;
  padding: 10px 14px;
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  color: #3a2e20;
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.mh-tip-label {
  color: #3a8fa0;
}

/* --- Info / pick / stage / mistake / loss cards --- */
.mh-info-card {
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-radius: 4px;
  padding: 18px 20px;
}

.mh-info-card-title {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 16px;
  color: #3a2e20;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d8a030;
}

.mh-info-list {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #3a2e20;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mh-info-list li {
  padding: 4px 0;
}

.mh-info-list li + li {
  border-top: 1px dashed rgba(192, 176, 144, 0.5);
}

.mh-info-list--spaced {
  margin-top: 0.75rem;
}

.mh-pick-card {
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-top: 3px solid #c0b090;
  border-radius: 4px;
  padding: 16px 18px;
}

.mh-pick-good {
  border-top-color: #0d9488;
}

.mh-pick-warn {
  border-top-color: #d8a030;
}

.mh-pick-avoid {
  border-top-color: #8b3a3a;
}

.mh-pick-title {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 15px;
  color: #3a2e20;
  margin: 0 0 10px;
}

.mh-inline-link {
  display: inline;
  margin-left: 4px;
  font: inherit;
  font-weight: 600;
  color: #3a8fa0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mh-inline-link:hover {
  color: #d8a030;
}

.mh-stage-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mh-stage-card {
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-radius: 4px;
  padding: 20px;
  transition: border-color 0.15s ease;
}

.mh-stage-card:hover {
  border-color: #d8a030;
}

.mh-stage-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mh-stage-card__body {
  flex: 1;
  min-width: 0;
}

.mh-stage-number {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8a030 0%, #b88420 100%);
  color: #3a2e20;
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 22px;
  border-radius: 50%;
  border: 2px solid #8b3a3a;
}

.mh-stage-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3a2e20;
  margin: 0 0 0.5rem;
}

.mh-stage-goal {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #3a2e20;
  margin: 0 0 0.75rem;
}

.mh-stage-goal-label {
  color: #8b3a3a;
}

.mh-stage-columns {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mh-stage-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mh-stage-col-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3a8fa0;
  margin: 0 0 0.25rem;
}

.mh-stage-list {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #3a2e20;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mh-stage-list li {
  margin: 0.125rem 0;
}

.mh-mistake-card {
  background: #fef3e6;
  border: 1px solid #c0b090;
  border-left: 3px solid #d8a030;
  border-radius: 4px;
  padding: 16px 18px;
}

.mh-mistake-title {
  font-family: "Cinzel Decorative", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  color: #3a2e20;
  margin: 0 0 10px;
}

.mh-mistake-reality {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #3a2e20;
  margin: 6px 0 0;
}

.mh-mistake-fails {
  color: #8b3a3a;
}

.mh-mistake-truth {
  color: #0d9488;
}

.mh-loss-card {
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-top: 3px solid #8b3a3a;
  border-radius: 4px;
  padding: 16px 18px;
}

.mh-loss-title {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 15px;
  color: #8b3a3a;
  margin: 0 0 8px;
}

.mh-loss-summary {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #3a2e20;
  margin: 0;
}

/* --- Hunter advice --- */
.mh-advice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .mh-advice-grid {
    grid-template-columns: minmax(0, 1fr) 220px;
  }
}

.mh-advice-content {
  min-width: 0;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mh-advice-toc {
  display: none;
}

@media (min-width: 1024px) {
  .mh-advice-toc {
    display: block;
  }

  .mh-advice-toc-panel {
    position: sticky;
    top: 96px;
    background: #f5ecd9;
    border: 1px solid #c0b090;
    border-left: 4px solid #d8a030;
    border-radius: 4px;
    padding: 14px 16px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }
}

.mh-advice-toc-title {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8b3a3a;
  margin: 0 0 10px;
}

.mh-advice-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mh-advice-toc-link {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3a2e20;
  text-decoration: none;
  padding: 6px 10px;
  border-left: 2px solid transparent;
  border-radius: 0 3px 3px 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mh-advice-toc-link:hover {
  background: rgba(216, 160, 48, 0.12);
  color: #8b3a3a;
}

.mh-advice-toc-link--active {
  background: rgba(216, 160, 48, 0.18);
  color: #8b3a3a;
  border-left-color: #d8a030;
}

.mh-hunter-block + .mh-hunter-block {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #c0b090;
}

.mh-hunter-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel Decorative", serif;
  font-size: 22px;
  font-weight: 700;
  color: #8b3a3a;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d8a030;
}

.mh-twitch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #9146ff;
  background: rgba(145, 70, 255, 0.08);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.mh-twitch-link:hover {
  background: #9146ff;
  color: #fff;
  transform: translateY(-1px);
}

.mh-twitch-icon {
  width: 18px;
  height: 18px;
}

.mh-hunter-note {
  margin-top: 20px;
}

.mh-hunter-note:first-of-type {
  margin-top: 0;
}

.mh-hunter-topic {
  font-family: "Cinzel Decorative", serif;
  font-size: 16px;
  font-weight: 700;
  color: #3a8fa0;
  margin: 0 0 8px;
}

.mh-hunter-note p {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #3a2e20;
  margin: 0 0 8px;
  line-height: 1.55;
}

.mh-hunter-note p:last-child {
  margin-bottom: 0;
}

.mh-hunter-note ul.mh-info-list {
  margin-bottom: 8px;
}

.mh-armor-set-intro {
  margin-bottom: 8px !important;
}

.mh-armor-set-intro--charm {
  padding: 10px 12px;
  background: rgba(58, 143, 160, 0.08);
  border: 1px solid rgba(58, 143, 160, 0.25);
  border-left: 3px solid #3a8fa0;
  border-radius: 4px;
  margin-bottom: 16px !important;
}

.mh-armor-set-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 52rem;
}

.mh-armor-set-card {
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-left: 4px solid #d8a030;
  border-radius: 4px;
  overflow: hidden;
}

.mh-armor-set-card__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #c0b090;
  background: rgba(255, 255, 255, 0.12);
}

.mh-armor-set-card__badge {
  flex-shrink: 0;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3a2e20;
  background: linear-gradient(135deg, #d8a030 0%, #b88420 100%);
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid #8b3a3a;
}

.mh-armor-set-card__title {
  font-family: "Cinzel Decorative", serif;
  font-size: 15px;
  font-weight: 700;
  color: #3a2e20;
  margin: 0;
  line-height: 1.3;
}

.mh-armor-set-card__summary {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #3a2e20;
  line-height: 1.55;
  margin: 0;
  padding: 14px 16px;
}

.mh-armor-set-card__figure {
  margin: 0;
  background: #ebe3d0;
  border-bottom: 1px solid #c0b090;
}

.mh-armor-set-card__link {
  display: block;
  cursor: zoom-in;
  transition: background 0.15s ease;
}

.mh-armor-set-card__link:hover,
.mh-armor-set-card__link:focus-visible {
  background: rgba(216, 160, 48, 0.12);
  outline: none;
}

.mh-armor-set-card__link:hover .mh-armor-set-card__img,
.mh-armor-set-card__link:focus-visible .mh-armor-set-card__img {
  opacity: 0.92;
}

.mh-armor-set-card__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 70vh);
  object-fit: contain;
  object-position: top center;
  transition: opacity 0.15s ease;
}

.mh-armor-set-card__zoom-hint {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a6e5e;
  text-align: center;
  padding: 6px 12px;
  margin: 0;
  border-top: 1px solid rgba(192, 176, 144, 0.45);
}

.mh-armor-set-details {
  margin: 0;
  padding: 0;
}

.mh-armor-set-details__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 14px;
  padding: 10px 16px;
  border-top: 1px solid rgba(192, 176, 144, 0.55);
  margin: 0;
}

.mh-armor-set-details__row:first-child {
  border-top: none;
}

.mh-armor-set-details__label {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3a8fa0;
  margin: 0;
  padding-top: 2px;
}

.mh-armor-set-details__value {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  color: #3a2e20;
  line-height: 1.5;
  margin: 0;
}

.mh-armor-set-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mh-armor-set-skills li {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(216, 160, 48, 0.18);
  border: 1px solid #d8a030;
  border-radius: 999px;
  color: #3a2e20;
}

.mh-armor-set-callout {
  margin-top: 1.25rem;
  max-width: 52rem;
  padding: 14px 16px;
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-left: 4px solid #8b3a3a;
  border-radius: 4px;
}

.mh-armor-set-callout__title {
  font-family: "Cinzel Decorative", serif;
  font-size: 14px;
  font-weight: 700;
  color: #8b3a3a;
  margin: 0 0 8px;
}

.mh-armor-set-callout p {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  color: #3a2e20;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 640px) {
  .mh-armor-set-details__row {
    grid-template-columns: 88px 1fr;
  }
}

/* --- Hunter arts accordion --- */
.mh-arts-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mh-arts-cat {
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-left: 3px solid #3a8fa0;
  border-radius: 4px;
  overflow: hidden;
}

.mh-arts-cat[open] {
  border-left-color: #d8a030;
}

.mh-arts-cat-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  cursor: pointer;
  font-family: "Cinzel Decorative", serif;
  user-select: none;
  list-style: none;
}

.mh-arts-cat-summary::-webkit-details-marker {
  display: none;
}

.mh-arts-cat-summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 10px;
  color: #d8a030;
  font-size: 10px;
  transition: transform 0.15s ease;
}

.mh-arts-cat[open] .mh-arts-cat-summary::before {
  transform: rotate(90deg);
}

.mh-arts-cat-summary:hover {
  background: rgba(216, 160, 48, 0.08);
}

.mh-arts-cat-title {
  font-weight: 700;
  font-size: 15px;
  color: #3a2e20;
  flex: 1;
}

.mh-arts-cat-count {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: #7a6e5e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mh-arts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 4px 18px 18px;
}

@media (min-width: 768px) {
  .mh-arts-list {
    grid-template-columns: 1fr 1fr;
  }
}

.mh-art {
  background: rgba(253, 250, 242, 0.7);
  border: 1px solid rgba(192, 176, 144, 0.6);
  border-radius: 3px;
  padding: 10px 12px;
}

.mh-art-name {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 13px;
  color: #8b3a3a;
  margin: 0 0 2px;
}

.mh-art-desc {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  color: #7a6e5e;
  margin: 0 0 6px;
  line-height: 1.4;
}

.mh-art-tiers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mh-art-tiers li {
  display: flex;
  gap: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  color: #3a2e20;
  line-height: 1.4;
}

.mh-art-tier {
  flex-shrink: 0;
  width: 22px;
  font-family: "Share Tech Mono", monospace;
  font-weight: 700;
  color: #3a8fa0;
  text-align: center;
}

.mh-art-unlock {
  flex: 1;
}

/* --- Milestones --- */
.mh-milestone-grid {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 640px) {
  .mh-milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mh-milestone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-radius: 4px;
  padding: 12px 14px;
}

.mh-milestone-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3a8fa0;
  color: #f5ecd9;
  font-family: "Share Tech Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
}

.mh-milestone-text {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #3a2e20;
  line-height: 1.45;
}

/* --- Credits --- */
.mh-credit-card {
  background: linear-gradient(135deg, #f5ecd9 0%, #ede0c0 100%);
  border: 1px solid #d8a030;
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mh-credit-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mh-credit-card__body {
  flex: 1;
  min-width: 0;
}

.mh-credit-card__title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #8b3a3a;
  margin: 0 0 0.25rem;
}

.mh-credit-card__lede {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #3a2e20;
  margin: 0 0 1rem;
  line-height: 1.55;
}

.mh-credit-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8a030;
  color: #3a2e20;
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 22px;
  border-radius: 50%;
  border: 2px solid #8b3a3a;
}

.mh-credit-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .mh-credit-sections {
    grid-template-columns: 1fr 1fr;
  }
}

.mh-credit-block {
  background: rgba(253, 250, 242, 0.55);
  border: 1px solid rgba(192, 176, 144, 0.6);
  border-radius: 3px;
  padding: 10px 14px;
}

.mh-credit-block-title {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b3a3a;
  margin: 0 0 8px;
}

.mh-credit-list {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  color: #3a2e20;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.45;
}

.mh-credit-link {
  font-weight: 600;
  color: #3a8fa0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mh-credit-link:hover {
  color: #d8a030;
}

/* --- Closing card --- */
.mh-closing-card {
  background: linear-gradient(135deg, #2e2820 0%, #3a2e20 100%);
  color: #e8dcc4;
  border: 1px solid #d8a030;
  border-radius: 4px;
  padding: 24px 28px;
  text-align: center;
}

.mh-closing-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #d8a030;
  margin: 0 0 0.5rem;
}

.mh-closing-text {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  color: #e8dcc4;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

/* --- Back to top --- */
.mh-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8b3a3a;
  color: #f5ecd9;
  border: 2px solid #d8a030;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, background 0.15s ease;
}

.mh-back-to-top:hover {
  background: #6e2929;
  transform: translateY(-2px);
}

.mh-back-to-top:focus-visible {
  outline: 2px solid #d8a030;
  outline-offset: 3px;
}

/* --- Contact form (newbie guide feedback) --- */
#feedback .mh-guide-lede {
  margin-bottom: 2rem;
}

.contact-form {
  background: #f5ecd9;
  border: 1px solid #c0b090;
  border-radius: 4px;
  padding: 28px 32px;
  max-width: 48rem;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.contact-form-label {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3a2e20;
}

.contact-form-required {
  color: #8b3a3a;
}

.contact-form-optional {
  color: #7a6e5e;
  font-weight: 400;
  font-size: 12px;
}

.contact-form-input,
.contact-form-textarea {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: #3a2e20;
  background: #fdfaf2;
  border: 1px solid #c0b090;
  border-radius: 3px;
  padding: 8px 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #d8a030;
  box-shadow: 0 0 0 3px rgba(216, 160, 48, 0.15);
}

.contact-form-button {
  align-self: flex-start;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f5ecd9;
  background: #8b3a3a;
  border: 2px solid #d8a030;
  border-radius: 3px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}

.contact-form-button:hover:not(:disabled) {
  background: #6e2929;
}

.contact-form-button:active:not(:disabled) {
  transform: translateY(1px);
}

.contact-form-success {
  background: #e6f4ea;
  border-left: 4px solid #0d9488;
  color: #14532d;
  padding: 12px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
}

.contact-form-alert {
  background: #fde8e8;
  border-left: 4px solid #8b3a3a;
  color: #6e2929;
  padding: 12px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

