/* ==========================================================================
   THE PRIVATE OFFICE — WEBSITE
   media-centre.css — page styles for /media-centre only.
   Reuses the design system (tokens · base · components · site chrome);
   nothing in this file affects any other page.
   ========================================================================== */

/* ==========================================================================
   1 · BREADCRUMB — quiet institutional wayfinding
   ========================================================================== */
.mc-crumbs {
  background: var(--c-white);
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
  padding: calc(var(--header-h) + var(--space-3)) clamp(20px, 4vw, 64px) var(--space-3);
}
.mc-crumbs__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
}
.mc-crumbs__link, .mc-crumbs__here, .mc-crumbs__sep {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}
.mc-crumbs__link { color: var(--navy-800); text-decoration: none; transition: color var(--dur-2) var(--ease-standard); }
.mc-crumbs__link:hover { color: var(--gold-600); }
.mc-crumbs__link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: var(--r-xs); }
.mc-crumbs__sep { color: var(--gold-500); }
.mc-crumbs__here { color: var(--ink-mute); }

/* ==========================================================================
   2 · PAGE HERO — centered navy band + discreet draft notice
   ========================================================================== */
.mc-hero {
  background: var(--grad-navy);
  color: var(--ivory-100);
  text-align: center;
  padding: var(--space-7) clamp(24px, 5vw, 64px);
}
.mc-hero__inner { max-width: 840px; margin-inline: auto; }
.mc-hero .eyebrow { color: var(--gold-400); }
.mc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: var(--fw-medium);
  line-height: 1.14;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 18px 0 20px;
  text-wrap: balance;
}
.mc-hero__lead {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-light);
  line-height: 1.72;
  color: rgba(247, 242, 232, 0.74);
  max-width: 62ch;
  margin-inline: auto;
}
.mc-hero__note {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-wide);
  line-height: 1.7;
  color: rgba(247, 242, 232, 0.6);
}
.mc-hero__note::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-500);
  flex: none;
}

/* ==========================================================================
   3 · MEDIA SECTIONS — editorial ledger of long-form sections
   ========================================================================== */
.mc-content { background: #FAF8F3; padding: var(--space-6) clamp(20px, 4vw, 64px) var(--space-7); }
.mc-inner { max-width: 1180px; margin-inline: auto; }
.mc-sections { display: flex; flex-direction: column; gap: var(--space-4); }

.mc-sec {
  scroll-margin-top: calc(var(--header-h) + 20px);   /* anchored: never under the fixed header */
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);        /* thin muted-gold border */
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(26px, 3.2vw, 44px);
}
.mc-sec__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin: 0 0 14px;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
  text-wrap: balance;
}
.mc-sec p {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 68ch;
  margin: 0 0 12px;
}
.mc-sec p:last-child { margin-bottom: 0; }
.mc-sec__h3 {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 10px;
}
.mc-list {
  list-style: none; margin: 0 0 12px; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.mc-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--ink-soft);
}
.mc-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: var(--gold-50);
}
.mc-note {
  margin: var(--space-2) 0 0;
  padding: 12px 18px;
  border-left: 2px solid var(--gold-500);
  background: var(--gold-50);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: var(--track-wide);
  line-height: 1.7;
  color: var(--ink-mute);
}
.mc-sec__link { margin-top: var(--space-2); }
.mc-sec__link .icon { width: 15px; height: 15px; }

/* ==========================================================================
   Responsive — tablet & mobile
   ========================================================================== */
@media (max-width: 767px) {
  .mc-crumbs { padding-top: calc(var(--header-h) + var(--space-2)); }
  .mc-hero { padding: var(--space-6) clamp(20px, 5vw, 40px); }
  .mc-hero__title { font-size: clamp(1.875rem, 6.8vw, 2.25rem); }
  .mc-hero__note { align-items: flex-start; text-align: left; }
  .mc-content { padding-block: var(--space-5) var(--space-6); }
}

.mc-sec__actions { margin-top: var(--space-3); display: flex; flex-wrap: wrap; gap: var(--space-2); }

@media (max-width: 767px) {
  .mc-sec__actions .btn { justify-content: center; width: 100%; max-width: 420px; }
}

/* ==========================================================================
   5 · MEDIA & PROTOCOL ENQUIRIES — completed enquiry hub (append-only)
   Request-type cards · request form · media contact side panel · review
   timeline · important-notice panel · FAQ. All values reference the shared
   design tokens; nothing here affects other pages or sections.
   ========================================================================== */

/* ------------------------------------------------------------- intro copy */
.mc-mp__head .mc-sec__title { border-bottom: 0; padding-bottom: 0; }
.mc-mp__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--navy-800);
  max-width: 70ch;
}
.mc-mp__intro {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 70ch;
}
.mc-mp__blockhead {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
}
.mc-mp__blockhead::before {
  content: "";
  width: 22px; height: 1px; flex: none;
  background: var(--gold-500);
}

/* ---------------------------------------------------------- request types */
.mc-mp-types {
  list-style: none; margin: var(--space-3) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
}
.mc-mp-types > li { display: flex; }
.mc-mp-type {
  display: flex; align-items: flex-start; gap: 16px; flex: 1;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--r-md);
  padding: 22px 22px 20px;
  transition:
    transform var(--dur-3) var(--ease-lux),
    box-shadow var(--dur-3) var(--ease-lux),
    border-color var(--dur-2) var(--ease-standard);
}
.mc-mp-type:hover {
  border-color: rgba(198, 161, 91, 0.65);
  box-shadow: 0 20px 38px -26px rgba(24, 34, 52, 0.35);
  transform: translateY(-2px);
}
.mc-mp-type__icon {
  width: 52px; height: 52px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-50);
  border: 1px solid rgba(198, 161, 91, 0.5);
  color: var(--gold-600);
}
.mc-mp-type__icon .icon { width: 23px; height: 23px; }
.mc-mp-type__title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: var(--fw-semi); line-height: 1.3;
  color: var(--navy-800); margin: 2px 0 6px;
}
.mc-mp-type__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem; line-height: 1.65;
  color: var(--ink-soft); margin: 0;
}

/* -------------------------------------------------- form + side panel row */
.mc-mp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
  margin-top: var(--space-3);
}
.mc-mp-formcard { padding: clamp(26px, 3vw, 40px); }
.mc-mp-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px var(--space-3);
}
.mc-mp-form__full { grid-column: 1 / -1; }

/* file field — dashed gold well prepared for the future storage adapter */
.mc-mp-file__input {
  width: 100%;
  padding: 13px 15px;
  background: var(--c-white);
  border: 1.5px dashed rgba(198, 161, 91, 0.5);
  border-radius: var(--r-md);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  transition: border-color var(--dur-2) var(--ease-standard);
}
.mc-mp-file__input:hover { border-color: var(--gold-500); }
.mc-mp-file__input::file-selector-button {
  margin-right: 14px;
  padding: 8px 18px;
  border: 1px solid rgba(198, 161, 91, 0.5);
  border-radius: var(--r-sm);
  background: var(--gold-50);
  color: var(--gold-700);
  font-family: var(--font-sub);
  font-size: 0.625rem; font-weight: var(--fw-semi);
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
}
.mc-mp-file__hint { margin-top: 8px; }

.mc-mp-form__actions {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: var(--space-1);
}
.mc-mp-submit { gap: 10px; }
.mc-mp-submit__spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(10, 16, 28, 0.25);
  border-top-color: var(--navy-900);
  border-radius: 50%;
  animation: mc-mp-spin 0.8s linear infinite;
}
.mc-mp-submit.is-loading .mc-mp-submit__spinner { display: inline-block; }
.mc-mp-submit:disabled { cursor: wait; }
@keyframes mc-mp-spin { to { transform: rotate(1turn); } }

/* success panel — replaces the form, announced via role="status" */
.mc-mp-success { text-align: center; padding: clamp(12px, 2vw, 28px) 0; }
.mc-mp-success__badge {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
}
.mc-mp-success__badge .icon { width: 28px; height: 28px; color: var(--navy-800); }
.mc-mp-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: var(--fw-semi);
  color: var(--navy-800); margin: 0 0 12px;
}
.mc-mp-success__title:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }
.mc-mp-success__text {
  font-family: var(--font-body);
  font-size: var(--fs-sm); line-height: 1.75;
  color: var(--ink-soft); max-width: 52ch;
  margin: 0 auto 22px;
}

/* --------------------------------------------------------------- side card */
.mc-mp-side {
  position: relative;
  background: var(--grad-navy);
  color: var(--ivory-100);
  border-radius: var(--r-md);
  padding: clamp(26px, 2.6vw, 34px);
  box-shadow: 0 30px 60px -38px rgba(10, 16, 28, 0.8);
}
.mc-mp-side::before {
  content: "";
  position: absolute; inset: 0 0 auto;
  height: 3px;
  background: var(--grad-gold);
}
.mc-mp-side__title {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: var(--fw-semi); line-height: 1.25;
  color: var(--c-white); margin: 6px 0 8px;
}
.mc-mp-side .mc-mp-side__sub {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps); text-transform: uppercase;
  color: var(--gold-400); margin: 0;
}
.mc-mp-side__rule {
  display: block; height: 1px;
  background: rgba(198, 161, 91, 0.35);
  margin: 18px 0;
}
.mc-mp-side .mc-mp-side__label {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps); text-transform: uppercase;
  color: var(--gold-300); margin: 0 0 10px;
}
.mc-mp-side .mc-mp-side__label .icon { width: 15px; height: 15px; flex: none; }
.mc-mp-side .mc-mp-side__value {
  font-family: var(--font-body);
  font-size: var(--fs-body); line-height: 1.6;
  color: var(--ivory-100); margin: 0 0 2px;
}
.mc-mp-side .mc-mp-side__text {
  font-family: var(--font-body);
  font-size: var(--fs-sm); line-height: 1.75;
  color: rgba(247, 242, 232, 0.78); margin: 0;
}
.mc-mp-side .mc-mp-side__note {
  font-family: var(--font-body);
  font-size: var(--fs-xs); line-height: 1.7;
  color: rgba(247, 242, 232, 0.55); margin: 0;
}
@media (min-width: 1024px) {
  .mc-mp-side { position: sticky; top: calc(var(--header-h) + 16px); }
}

/* Panel CTA + in-page anchor target — reserved at end of the mp-side block */
.mc-mp-side .mc-mp-side__cta {
  margin-top: var(--space-3);
  justify-content: center;
  text-align: center;
}
@media (max-width: 767px) {
  .mc-mp-side .mc-mp-side__cta { flex-direction: column; white-space: normal; height: auto; min-height: var(--btn-h-md); padding-block: 10px; }
}
#mc-mp-form { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ------------------------------------------------------------ review steps */
.mc-mp-steps {
  list-style: none; margin: var(--space-4) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.mc-mp-step {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
  padding: 6px 10px 0;
}
.mc-mp-step::before {
  content: "";
  position: absolute; top: 28px; left: 0; right: 0;
  height: 1px;
  background: rgba(198, 161, 91, 0.45);
}
.mc-mp-step:first-child::before { left: 50%; }
.mc-mp-step:last-child::before { right: 50%; }
.mc-mp-step__num {
  position: relative; z-index: 1;
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-white);
  border: 1.5px solid var(--gold-500);
  color: var(--gold-700);
  font-family: var(--font-sub);
  font-size: 0.8125rem; font-weight: var(--fw-semi);
  box-shadow: 0 0 0 6px var(--c-white);
}
.mc-mp-step__label {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: 0.12em; text-transform: uppercase;
  line-height: 1.55; color: var(--navy-800);
}
.mc-mp__processnote { margin-top: var(--space-4); }

/* ---------------------------------------------------------- important note */
.mc-mp-notice {
  display: flex; align-items: flex-start; gap: 18px;
  margin-top: var(--space-5);
  padding: 24px 26px;
  background: var(--gold-50);
  border: 1px solid rgba(198, 161, 91, 0.45);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--r-md);
}
.mc-mp-notice__icon {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.5);
  color: var(--gold-600);
}
.mc-mp-notice__icon .icon { width: 20px; height: 20px; }
.mc-mp-notice__title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: var(--fw-semi);
  color: var(--navy-800); margin: 0 0 10px;
}
.mc-mp-notice__list { margin: 0; gap: 7px; }

/* -------------------------------------------------------------------- faq */
.mc-mp-faq { margin-top: var(--space-3); }
.mc-mp-faq__item {
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: var(--r-md);
  overflow: hidden;
}
.mc-mp-faq__item + .mc-mp-faq__item { margin-top: 12px; }
.mc-mp-faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 22px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: var(--fw-semi); line-height: 1.4;
  color: var(--navy-800);
  transition: color var(--dur-2) var(--ease-standard);
}
.mc-mp-faq__q::-webkit-details-marker { display: none; }
.mc-mp-faq__q:hover { color: var(--gold-700); }
.mc-mp-faq__q:focus-visible { outline: 2px solid var(--gold-500); outline-offset: -2px; }
.mc-mp-faq__chev {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, 0.45);
  color: var(--gold-600);
}
.mc-mp-faq__chev .icon { width: 13px; height: 13px; transition: transform var(--dur-2) var(--ease-standard); }
.mc-mp-faq__item[open] .mc-mp-faq__chev .icon { transform: rotate(45deg); }
.mc-mp-faq__item[open] { border-color: rgba(198, 161, 91, 0.55); }
.mc-mp-faq__a { padding: 0 22px 20px; }
@keyframes mc-mp-fade { from { opacity: 0; } to { opacity: 1; } }
.mc-mp-faq__item[open] .mc-mp-faq__a { animation: mc-mp-fade 0.35s var(--ease-standard) both; }
.mc-mp-faq__a p {
  font-family: var(--font-body);
  font-size: var(--fs-sm); line-height: 1.75;
  color: var(--ink-soft); max-width: 70ch; margin: 0;
}

/* -------------------------------------------------------------- responsive */
@media (min-width: 768px) and (max-width: 1023px) {
  .mc-mp-types { grid-template-columns: repeat(2, 1fr); }
  .mc-mp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .mc-mp-types { grid-template-columns: 1fr; }
  .mc-mp-grid { grid-template-columns: 1fr; }
  .mc-mp-form__grid { grid-template-columns: 1fr; }
  .mc-mp-steps { grid-template-columns: 1fr; gap: 6px; }
  .mc-mp-step {
    flex-direction: row; align-items: center;
    text-align: left; gap: 16px;
    padding: 12px 0;
  }
  .mc-mp-step::before {
    top: 0; bottom: 0; left: 22px; right: auto;
    width: 1px; height: auto;
  }
  .mc-mp-step:first-child::before { left: 22px; top: 50%; }
  .mc-mp-step:last-child::before { left: 22px; right: auto; bottom: 50%; }
  .mc-mp-notice { flex-direction: column; padding: 20px 22px; }
}

/* ---------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mc-mp-type { transition: none; }
  .mc-mp-type:hover { transform: none; }
  .mc-mp-faq__chev .icon { transition: none; }
  .mc-mp-faq__item[open] .mc-mp-faq__a { animation: none; }
  .mc-mp-submit__spinner { animation-duration: 1.6s; }
}

/* ==========================================================================
   6 · LAUNCH POLISH — portrait gallery strip · info panel · request card
   Reuses the verified-gallery card language (white cards, hairline gold
   keylines, 4:3 imagery). Append-only; nothing here affects other pages.
   ========================================================================== */

/* --------------------------------------------------- official portraits */
.mc-port__loading {
  margin: var(--space-3) 0 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--ink-mute);
}
.mc-port__grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.mc-port {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--dur-3) var(--ease-lux), border-color var(--dur-2) var(--ease-standard);
}
.mc-port:hover { border-color: rgba(198, 161, 91, 0.65); box-shadow: 0 20px 38px -26px rgba(24, 34, 52, 0.35); }
.mc-port__media {
  aspect-ratio: 4 / 3;
  background: var(--navy-900);
  overflow: hidden;
}
.mc-port__img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform 0.6s var(--ease-lux);
}
.mc-port:hover .mc-port__img { transform: scale(1.02); }   /* ceiling: never above 1.02 */
.mc-port__body {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px 22px 22px; flex: 1;
}
.mc-port__title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: var(--fw-semi); line-height: 1.35;
  color: var(--navy-800); margin: 0;
}
.mc-port__date {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs); font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps); text-transform: uppercase;
  color: var(--ink-mute); margin: 0;
}
.mc-port__src {
  font-family: var(--font-sub);
  font-size: 0.5625rem; font-weight: var(--fw-semi);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-700); margin: 0;
}
.mc-port__cta { margin-top: auto; width: 100%; }
.mc-port__fallback {
  margin: var(--space-4) 0 0;
  padding: var(--space-4) var(--space-4);
  border: 1.5px dashed rgba(198, 161, 91, 0.5);
  border-radius: var(--r-md);
  background: var(--c-white);
  font-family: var(--font-body);
  font-size: var(--fs-sm); line-height: 1.75;
  color: var(--ink-soft);
}
.mc-port__note { margin-top: var(--space-4); }

/* ------------------------------------------- image & logo information panel */
.mc-panel {
  margin-top: 2px;
  padding: 22px 26px;
  background: var(--gold-50);
  border: 1px solid rgba(198, 161, 91, 0.45);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--r-md);
}
.mc-panel p:last-child { margin-bottom: 0; }
.mc-panel__link { color: var(--gold-700); text-decoration: underline; text-decoration-color: rgba(198, 161, 91, 0.55); text-underline-offset: 3px; }
.mc-panel__link:hover { color: var(--navy-800); }
.mc-panel__link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: var(--r-xs); }

/* --------------------------------------------------- interview request card */
.mc-req {
  margin-top: var(--space-3);
  padding: clamp(22px, 2.6vw, 30px);
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.4);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.mc-req__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px var(--space-4);
  margin-bottom: var(--space-3);
}

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1023px) {
  .mc-port__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .mc-port__grid { grid-template-columns: 1fr; }
  .mc-req__list { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mc-port__img { transition: none; }
  .mc-port:hover .mc-port__img { transform: none; }
  .mc-port { transition: none; }
}
