.research-page .header-pages {
  padding-top: 73px;
  padding-bottom: 100px;
}

.research-page__title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.research-page__title {
  color: #101828;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.research-page__title-accent {
  display: block;
  width: 96px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 4px;
  background: #8d0f27;
}

.research-page__intro {
  background: #f9fafb;
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.research-page__intro-body {
  color: #364153;
  font-size: 18px;
  line-height: 1.625;
}

.research-page__intro-body p {
  margin: 0 0 1.5rem;
}

.research-page__intro-body p:last-child {
  margin-bottom: 0;
}

.research-page__intro-body ul,
.research-page__intro-body ol {
  margin: 0 0 1.5rem;
  padding-inline-start: 1.25rem;
}

.research-page__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 5rem;
}

.research-page__media-cover {
  position: relative;
  cursor: pointer;
}

.research-page__media-cover img,
.research-page__media > video {
  display: block;
  width: 100%;
  min-height: 280px;
  max-height: 702px;
  object-fit: cover;
}

.research-page__media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.research-page__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #8d0f27;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.research-page__play-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  margin-inline-start: 4px;
}

.research-page__media-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  text-align: end;
}

.research-page__media-caption h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.research-page__media-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
}

.research-page__media video {
  display: none;
  width: 100%;
}

.research-page__areas-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.research-page__areas-heading h2 {
  color: #101828;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.research-page__areas-heading p {
  margin: 0 auto;
  max-width: 42rem;
  color: #4a5565;
  font-size: 18px;
  line-height: 1.55;
}

.research-page__areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.research-area-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.research-area-card__media {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.research-area-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

.research-area-card__accent {
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 8px;
  z-index: 2;
  background: linear-gradient(to bottom, #8d0f27, #600e1d);
}

.research-area-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-area-card__placeholder {
  height: 100%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-area-card__placeholder img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  opacity: 0.45;
}

.research-area-card__body {
  padding: 1.5rem 1.5rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: start;
}

.research-area-card__title {
  color: #101828;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 0.35rem;
}

.research-area-card__subtitle {
  color: #6a7282;
  font-size: 12px;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.research-area-card__text {
  color: #364153;
  font-size: 14px;
  line-height: 1.625;
  margin: 0;
}

.research-area-card__bar {
  display: block;
  height: 4px;
  background: #8d0f27;
  flex-shrink: 0;
}

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

@media (max-width: 767.98px) {
  .research-page__intro {
    padding: 1.5rem;
  }

  .research-page__intro-body {
    font-size: 16px;
  }

  .research-page__areas-grid {
    grid-template-columns: 1fr;
  }

  .research-page__media-caption {
    text-align: start;
  }

  .research-page__play-btn {
    width: 64px;
    height: 64px;
  }
}
