.mdz-banner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mdz-hero {
  position: relative;
  overflow: hidden;
  height: 36rem;
  border-radius: 28px;
  background-color: #0f0f0f;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--mdz-shadow);
}

.mdz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 40%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.mdz-hero--slider {
  perspective: 1800px;
}

.mdz-hero--slider::before {
  display: none;
}

.mdz-hero-track {
  position: relative;
  height: 100%;
}

.mdz-hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  transform: translate3d(0, 0, -40px) scale(0.985) rotateY(16deg);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.mdz-hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mdz-hero-slide.is-prev {
  opacity: 0;
  transform: translateX(-14%) scale(0.96) rotateY(8deg);
}

.mdz-hero-slide.is-next {
  opacity: 0;
  transform: translateX(14%) scale(0.96) rotateY(-8deg);
}

.mdz-hero-slide__bg,
.mdz-hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.mdz-hero-slide__bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.03);
}

.mdz-hero-slide__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 40%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.mdz-hero-controls {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateX(-50%);
}

.mdz-hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mdz-hero-arrow:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.mdz-hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.mdz-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.mdz-hero-dot.is-active {
  background: #ffffff;
  transform: scale(1.12);
}

.mdz-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.mdz-hero-title {
  margin-top: 1rem;
  font-family: "PF Regal Display Pro", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  font-weight: 700;
  line-height: 0.98;
  color: #ffffff;
  text-wrap: balance;
}

.mdz-hero-copy {
  margin-top: 1.5rem;
  max-width: 33rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.mdz-story-block {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.mdz-story-media-wrap {
  position: relative;
  padding: 1.75rem;
}

.mdz-story-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 0.82 / 1;
  background: #101010;
}

.mdz-story-media img {
  filter: grayscale(1);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.mdz-story-media:hover img {
  filter: grayscale(0);
  transform: scale(1.01);
}

.mdz-story-corner {
  position: absolute;
  width: 9rem;
  height: 8rem;
  border: 1px solid rgba(173, 131, 60, 0.35);
  pointer-events: none;
}

.mdz-story-corner-top {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}

.mdz-story-corner-bottom {
  right: 0;
  bottom: 0;
  border-left: 0;
  border-top: 0;
}

.mdz-story-copy {
  max-width: 39rem;
}

.mdz-story-line {
  width: 3.3rem;
  height: 1px;
  margin-bottom: 1.6rem;
  background: rgba(182, 137, 82, 0.85);
}

.mdz-story-title {
  margin-top: 1.25rem;
  font-family: "PF Regal Display Pro", Georgia, serif;
  font-size: clamp(2.45rem, 4.4vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
  color: #f4f0ea;
}

.mdz-story-title span {
  display: block;
  margin-top: 0.45rem;
  color: #c49a4d;
}

.mdz-story-text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.62);
}

.mdz-story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c49a4d;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mdz-story-link:hover {
  color: #e1bc78;
  transform: translateX(2px);
}

.mdz-section-head-stack {
  align-items: flex-end;
}

.mdz-magazine-title {
  margin-top: 0.9rem;
  font-family: "PF Regal Display Pro", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: #f4f0ea;
}

.mdz-magazine-card {
  border-radius: 22px;
  background: transparent;
  padding: 0;
}

.mdz-magazine-card-large {
  padding: 0;
}

.mdz-magazine-cover {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #121212;
  aspect-ratio: 0.707 / 1;
}

.mdz-magazine-cover img {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.mdz-magazine-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.mdz-magazine-cover:hover img {
  filter: blur(5px) brightness(0.45);
  transform: scale(1.02);
}

.mdz-magazine-cover:hover .mdz-magazine-overlay {
  opacity: 1;
}

.journal-vpn-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: calc(100% - 1.5rem);
  border: 1px solid rgba(232, 175, 81, 0.46);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  padding: 0.42rem 0.6rem 0.42rem 0.72rem;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journal-vpn-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}

.journal-vpn-badge__tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.65rem);
  width: min(19rem, 72vw);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #101010;
  padding: 0.75rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.journal-vpn-badge:hover .journal-vpn-badge__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.mdz-alert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--mdz-radius-lg);
  background: var(--mdz-secondary);
}

.mdz-feed-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mdz-border);
}

.mdz-feed-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #737373;
}

.mdz-feed-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--mdz-fg);
}

@media (max-width: 767px) {
  .mdz-feed-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (min-width: 768px) {
  .mdz-alert {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .mdz-hero {
    height: 30rem;
    border-radius: 22px;
  }

  .mdz-hero-content {
    height: 100%;
    padding: 2rem 1.4rem;
  }

  .mdz-hero-copy {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .mdz-story-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mdz-story-media-wrap {
    padding: 1rem;
  }

  .mdz-story-corner {
    width: 5.5rem;
    height: 5rem;
  }

  .mdz-story-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

}

.mdz-partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(135deg, #121212 0%, #191919 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.mdz-person-card {
  display: block;
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #0e0e0e;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mdz-person-card:hover {
  border-color: rgba(232, 175, 81, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.mdz-person-card__media {
  position: relative;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(196, 154, 77, 0.18), transparent 40%),
    linear-gradient(180deg, #1f1f1f 0%, #0d0d0d 100%);
}

.mdz-person-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 220ms ease, transform 220ms ease;
}

.mdz-person-card:hover .mdz-person-card__photo {
  filter: none;
  transform: scale(1.03);
}

.mdz-person-avatar {
  aspect-ratio: 1 / 1.18;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(196, 154, 77, 0.18), transparent 40%),
    linear-gradient(180deg, #1f1f1f 0%, #0d0d0d 100%);
}

.mdz-person-avatar-alt {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 40%),
    linear-gradient(180deg, #252525 0%, #101010 100%);
}

.mdz-person-name {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.mdz-person-role {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.56);
}

.mdz-employee-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.mdz-employee-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.mdz-employee-modal__panel {
  position: relative;
  width: min(100%, 1040px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, #0f0f0f 0%, #080808 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.6);
  padding: 1.25rem;
}

.mdz-employee-modal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.mdz-employee-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.04);
}

.mdz-employee-modal__media {
  overflow: hidden;
  border-radius: 22px;
  background: #111111;
}

.mdz-employee-modal__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.mdz-news-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #0d0d0d;
}

.mdz-news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.mdz-news-card-link:hover {
  border-color: #E8AF51;
  background: #E8AF51;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.mdz-news-card-link:hover .mdz-news-meta,
.mdz-news-card-link:hover .mdz-news-title,
.mdz-news-card-link:hover .mdz-news-copy {
  color: #000000;
}

.mdz-news-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c49a4d;
}

.mdz-news-title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #f4f0ea;
}

.mdz-news-copy {
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mdz-join-card {
  padding: 1rem 0 0;
  background: transparent;
  text-align: center;
}

.mdz-join-title {
  margin-top: 1rem;
  font-family: "PF Regal Display Pro", Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 0.98;
  color: #f4f0ea;
}

.mdz-join-copy {
  margin-top: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.66);
}

.team-page {
  background: #000000;
}

.team-hero {
  max-width: 760px;
}

.team-hero__copy {
  margin-top: 1.35rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}

.team-category {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-category__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.team-badge--accent {
  border-color: rgba(232, 175, 81, 0.25);
  background: rgba(232, 175, 81, 0.08);
  color: #f1c46d;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.team-person-card {
  padding: 1rem;
}

.team-person-card .mdz-person-card__media {
  aspect-ratio: 1 / 1.03;
}

.team-person-card .mdz-person-name {
  margin-top: 0.9rem;
  font-size: 1rem;
}

.team-person-card .mdz-person-role {
  font-size: 0.88rem;
}

.journals-page {
  background: #000000;
}

.journals-hero {
  max-width: 760px;
}

.journals-hero__copy {
  margin-top: 1.35rem;
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}

.journals-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.journals-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto 2rem;
}

.journals-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #111111;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.journals-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 175, 81, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.journals-card__cover {
  position: relative;
  aspect-ratio: 210 / 297;
  overflow: hidden;
  background: #111111;
}

.journals-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.journals-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 180ms ease;
}

.journals-card:hover .journals-card__overlay {
  opacity: 1;
}

.journals-card:hover .journals-card__cover img {
  filter: blur(7px) brightness(0.78);
  transform: scale(1.04);
}

.journals-card--featured .journals-card__cover {
  aspect-ratio: 210 / 297;
}

.news-page {
  background: #000000;
}

.news-hero {
  max-width: 760px;
}

.news-hero__copy {
  margin-top: 1.35rem;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}

.news-feature-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: #111111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.news-feature-card__visual {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.news-feature-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.news-feature-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 180ms ease;
}

.news-feature-card:hover .news-feature-card__overlay {
  opacity: 1;
}

.news-feature-card:hover .news-feature-card__visual img {
  filter: blur(7px) brightness(0.78);
  transform: scale(1.04);
}

.news-feature-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.news-feature-card__title {
  margin-top: 0.85rem;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
}

.news-feature-card__copy {
  margin-top: 1rem;
  max-width: 62rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.news-article-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #111111;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.news-article-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-article-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.news-article-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 180ms ease;
}

.news-article-card:hover .news-article-card__overlay {
  opacity: 1;
}

.news-article-card:hover .news-article-card__visual img {
  filter: blur(7px) brightness(0.78);
  transform: scale(1.04);
}

.news-article-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.news-article-card__title {
  margin-top: 0.85rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.18;
  color: #ffffff;
}

.news-article-card__copy {
  margin-top: 0.95rem;
  font-size: 0.96rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.62);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page {
  background: #000000;
}

.article-story {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
  text-align: center;
}

.article-story__cover {
  overflow: hidden;
  border-radius: 24px;
  background: #111111;
  aspect-ratio: 850 / 475;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-story__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-story__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 760px;
  margin: 0 auto;
  align-items: center;
}

.article-story__title {
  font-family: "PF Regal Display Pro", Georgia, serif;
  font-size: clamp(2.65rem, 5vw, 3.25rem);
  line-height: 0.96;
  color: #ffffff;
}

.article-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.article-story__meta span + span::before {
  content: "·";
  margin-right: 0.85rem;
  color: rgba(232, 175, 81, 0.9);
}

.article-story__lead {
  max-width: 60rem;
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.article-story__content {
  margin-top: 0.5rem;
}

.article-cover {
  aspect-ratio: 210 / 297;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #111111;
}

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

.article-header {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.5rem;
}

.article-title {
  margin-top: 1rem;
  max-width: 14ch;
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: 0.95;
  color: #ffffff;
}

.article-excerpt {
  margin-top: 1.4rem;
  max-width: 44rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.article-meta {
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
}

.article-meta__row {
  display: grid;
  gap: 0.35rem;
}

.article-meta__row span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.article-meta__row strong {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.prose-vibe {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.prose-vibe h1,
.prose-vibe h2,
.prose-vibe h3 {
  margin: 1.8em 0 0.55em;
  color: #ffffff;
  font-family: "PF Regal Display Pro", Georgia, serif;
  line-height: 1.05;
}

.prose-vibe h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.prose-vibe h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.prose-vibe h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.prose-vibe p {
  margin: 1em 0;
  color: rgba(255, 255, 255, 0.84);
}

.prose-vibe blockquote {
  margin: 1.6em 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid #e8af51;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.prose-vibe hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.prose-vibe a {
  color: #e8af51;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.prose-vibe img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.4rem auto;
  border-radius: 20px;
}

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

@media (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-feature-card__visual {
    aspect-ratio: 16 / 10;
  }

  .news-feature-card__body {
    padding: 1.1rem 1.1rem 1.25rem;
  }

  .article-cover {
    max-width: 280px;
  }

  .article-story__cover {
    border-radius: 18px;
  }

  .article-story__title {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .article-story__lead {
    font-size: 0.98rem;
    line-height: 1.8;
  }
}

@media (max-width: 1535px) {
  .journals-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .journals-featured-grid {
    max-width: none;
  }

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

@media (max-width: 767px) {
  .journals-featured-grid {
    grid-template-columns: 1fr;
  }

  .journals-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 767px) {
  .mdz-partner-card {
    min-height: 6.5rem;
    font-size: 1.1rem;
  }

  .mdz-join-card {
    padding-top: 0.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .journals-card__body {
    padding: 1rem;
  }

  .team-person-card {
    padding: 0.95rem;
  }

  .team-category__head {
    align-items: start;
  }

  .team-badge {
    min-height: 2rem;
    font-size: 0.66rem;
  }

  .mdz-employee-modal {
    padding: 0.75rem;
  }

  .mdz-employee-modal__panel {
    padding: 1rem;
    border-radius: 22px;
  }
}

/* ── About page ────────────────────────────── */

.about-support-page {
  position: relative;
  background: #f5f1ea;
}

.about-support-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.about-support-stage__shape {
  position: absolute;
  left: 50%;
  top: -18rem;
  width: min(1960px, 148vw);
  height: min(1680px, 118vw);
  transform: translateX(-50%) rotate(10deg);
  transform-origin: center center;
  border-radius: 50%;
  background: #f5f1ea;
  z-index: 0;
  pointer-events: none;
}

.about-support-page > section {
  position: relative;
  z-index: 1;
}

.about-support-intro {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-support-mark {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.about-support-mark span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e8af51;
  opacity: 0.85;
}

.about-support-prose {
  text-align: center;
}

.about-support-prose p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.about-support-prose--dark p {
  color: rgba(17, 17, 17, 0.78) !important;
}

.about-support-prose--dark span {
  color: #111111 !important;
}

.about-support-prose p + p {
  margin-top: 1.6rem;
}

.about-support-card {
  border-radius: 28px;
  background: transparent;
  color: #111111;
  padding: 0;
}

.about-support-card__head {
  max-width: 760px;
}

.about-support-pillars {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.25rem;
}

.about-support-pillar {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 1.35rem;
}

.about-support-pillar__index {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}

.about-support-pillar h3 {
  margin: 1rem 0 0;
  font-family: "PF Regal Display Pro", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  color: #111111;
}

.about-support-pillar p:last-child {
  margin: 1rem 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.65);
}

.about-support-story__intro {
  max-width: 820px;
}

.about-support-chapters {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.about-support-chapter {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 1.75rem;
  padding-bottom: 1rem;
}

.about-support-chapter__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
}

.about-support-chapter h3 {
  margin: 1rem 0 0;
  font-family: "PF Regal Display Pro", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 0.96;
  color: #111111;
}

.about-support-chapter__body {
  margin-top: 1.3rem;
}

.about-support-chapter__body p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.66);
}

.about-support-chapter__body p + p {
  margin-top: 1rem;
}

.about-support-card--footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 24%, rgba(232, 175, 81, 0.14) 0, rgba(232, 175, 81, 0.02) 18%, transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12) 0, transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(255, 255, 255, 0.08) 0, transparent 16%),
    #0b0b0b;
  color: #ffffff;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
}

.about-support-card--footer::before,
.about-support-card--footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-support-card--footer::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(232, 175, 81, 0.22) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.5px);
  background-size: 160px 160px, 220px 220px, 280px 280px;
  background-position: 0 0, 36px 54px, 90px 120px;
  opacity: 0.58;
  animation: about-particles-drift 22s linear infinite;
}

.about-support-card--footer::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 72%);
  opacity: 0.8;
}

.about-support-card--footer .about-support-card__head,
.about-support-card--footer .mt-10 {
  position: relative;
  z-index: 1;
}

.about-support-card--footer .about-support-card__head {
  max-width: none;
  text-align: center;
}

.about-support-card--footer .about-support-card__head > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.about-support-card--footer .mt-10 {
  justify-content: center;
}

.about-support-card--footer .about-support-card__head p {
  color: rgba(255, 255, 255, 0.45);
}

.about-support-card--footer .about-support-card__head h2 {
  color: #ffffff;
}

.about-support-card--footer .about-support-card__head > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

@keyframes about-particles-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-14px, 10px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 767px) {
  .about-support-prose p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-support-stage__shape {
    top: 0;
    width: 240vw;
    height: 190vw;
    transform: translateX(-50%) rotate(12deg);
  }

  .about-support-card,
  .about-support-chapter {
    padding: 1.25rem 0 0;
  }

  .about-support-pillars {
    grid-template-columns: 1fr;
  }
}
