.mcs-performance {
  box-sizing: border-box;
  padding: 56px 0;
  background: var(--yla-paper, #f2f2f2);
  color: #111;
}

.mcs-performance-section {
  background: var(--yla-paper, #f2f2f2);
}

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

.mcs-performance__layout {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(380px, 0.95fr);
  gap: clamp(30px, 3.5vw, 56px);
  align-items: stretch;
}

.mcs-performance__hero {
  position: relative;
  min-width: 0;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #0b0d10;
}

.mcs-performance__hero picture,
.mcs-performance__hero img {
  display: block;
  width: 100%;
  height: 100%;
}

.mcs-performance__hero img {
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.mcs-performance__hero:hover img {
  transform: scale(1.015);
}

.mcs-performance__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
}

.mcs-performance__hero figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 3vw, 44px);
  bottom: clamp(22px, 3vw, 42px);
  color: #fff;
}

.mcs-performance__hero small,
.mcs-performance__eyebrow {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.mcs-performance__hero small {
  color: #f4ea00;
}

.mcs-performance__hero strong {
  display: block;
  margin-top: 9px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.02;
}

.mcs-performance__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.mcs-performance__eyebrow {
  margin: 0 0 10px;
  color: #666;
}

.mcs-performance__lead {
  max-width: 520px;
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(23px, 2vw, 33px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.08;
}

.mcs-performance__intro {
  max-width: 520px;
  margin: 12px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.mcs-performance__features {
  margin: 20px 0 0;
  padding: 0;
  border-bottom: 1px solid #d8d8d8;
  list-style: none;
}

.mcs-performance__features li {
  display: grid;
  grid-template-columns: 76px 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid #d8d8d8;
}

.mcs-performance__detail {
  display: block;
  width: 76px;
  height: 76px;
  overflow: hidden;
  background: #14171b;
}

.mcs-performance__detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mcs-performance__number {
  align-self: start;
  padding-top: 5px;
  color: #777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mcs-performance__features h3 {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.mcs-performance__features p {
  margin: 6px 0 0;
  color: #555;
  font-size: 12px;
  line-height: 1.45;
}

.mcs-performance__note {
  margin: 11px 0 0;
  color: #777;
  font-size: 10px;
  line-height: 1.45;
}

@media screen and (max-width: 1100px) {
  .mcs-performance__layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 1fr);
    gap: 28px;
  }

  .mcs-performance__hero {
    min-height: 420px;
  }
}

@media screen and (max-width: 959px) {
  .mcs-performance__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mcs-performance__hero {
    min-height: 0;
    aspect-ratio: 2.25 / 1;
  }

  .mcs-performance__features li {
    grid-template-columns: 88px 32px minmax(0, 1fr);
  }

  .mcs-performance__detail {
    width: 88px;
    height: 88px;
  }
}

@media screen and (max-width: 749px) {
  .mcs-performance {
    padding: 42px 0;
  }

  .mcs-performance__layout {
    gap: 24px;
  }

  .mcs-performance__hero {
    aspect-ratio: 4 / 5;
  }

  .mcs-performance__hero img {
    object-position: center top;
  }

  .mcs-performance__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0) 64%);
  }

  .mcs-performance__hero figcaption {
    top: 18px;
    right: 18px;
    bottom: auto;
    left: 18px;
  }

  .mcs-performance__hero strong {
    font-size: 25px;
  }

  .mcs-performance__lead {
    font-size: 23px;
  }

  .mcs-performance__intro {
    font-size: 13px;
  }

  .mcs-performance__features {
    margin-top: 17px;
  }

  .mcs-performance__features li {
    grid-template-columns: 72px 24px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
  }

  .mcs-performance__detail {
    width: 72px;
    height: 72px;
  }

  .mcs-performance__features h3 {
    font-size: 14px;
  }

  .mcs-performance__features p {
    margin-top: 4px;
    font-size: 12px;
  }
}

@media screen and (max-width: 389px) {
  .mcs-performance__features li {
    grid-template-columns: 62px 21px minmax(0, 1fr);
  }

  .mcs-performance__detail {
    width: 62px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mcs-performance__hero img {
    transition: none;
  }
}
