.about-body {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 6vh, 72px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: stretch;
}

.about-media {
  background: linear-gradient(165deg, rgba(255, 215, 0, 0.88), rgba(255, 238, 168, 0.82));
  border-radius: 32px;
  padding: clamp(24px, 4vw, 40px);
  border: 4px solid rgba(47, 42, 30, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 46px rgba(47, 42, 30, 0.2);
  min-height: clamp(360px, 55vh, 520px);
}

.about-media__poster {
  width: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(47, 42, 30, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 20px);
  overflow: hidden;
}

.about-media__poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(18px, 4vw, 22px);
  object-fit: cover;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 38px);
}


.about-card {
  background: #f5bd38;
  border-radius: 24px;
  padding: clamp(30px, 5vw, 46px);
  border: 4px solid rgba(47, 42, 30, 0.18);
  box-shadow: 0 18px 32px rgba(47, 42, 30, 0.16);
  color: var(--color-text);
}

.about-card h2,
.about-card h3 {
  margin: 0 0 18px;
}

 .about-card--headline {
  background: linear-gradient(150deg, #ffdc66, #f7b425);
  min-height: clamp(220px, 24vh, 280px);
 }

.about-card--body {
  display: none;
}

.about-card--body {
  background: rgba(255, 255, 255, 0.75);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 24px) clamp(22px, 4vw, 36px);
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 18px 22px;
  border: 3px solid rgba(47, 42, 30, 0.15);
  box-shadow: 0 12px 24px rgba(47, 42, 30, 0.12);
}

.about-feature__icon {
  width: clamp(44px, 7vw, 72px);
  height: clamp(44px, 7vw, 72px);
  object-fit: contain;
}

.about-feature__copy h4 {
  margin: 0 0 6px;
}

.about-feature__copy p {
  margin: 0;
  font-size: var(--font-size-xs);
}

.about-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(60px, 9vw, 112px);
}

.about-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 44px);
  width: min(880px, 86vw);
}

.about-footer__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-footer__item img {
  width: clamp(110px, 14vw, 180px);
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: clamp(220px, 40vh, 360px);
  }

  .about-media__poster {
    max-width: 420px;
    margin-inline: auto;
  }
}
