.research-module {
  --research-accent: #9f2738;
  --research-accent-dark: #6f1627;
  --research-ink: #10243c;
  --research-muted: #667589;
  --research-line: rgba(16, 36, 60, .12);
  --research-surface: #f5f8fa;
}

.research-module .module-showcase,
.research-module .module-news,
.research-links,
.research-systems { width: min(100%, 1320px); }

.research-section-heading { margin: 0 0 20px; }
.research-section-heading p,
.research-systems__intro p {
  margin: 0;
  color: var(--research-accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.research-section-heading h2,
.research-systems__intro h2 {
  margin: 7px 0 0;
  color: var(--research-ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.16;
}

.research-links { margin-top: 38px; }
.research-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.research-link-card { min-width: 0; }
.research-link-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--research-ink);
  background: #fff;
  border: 1px solid var(--research-line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(16, 36, 60, .07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.research-link-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 39, 56, .34);
  box-shadow: 0 22px 44px rgba(16, 36, 60, .12);
}
.research-link-card__link:focus-visible,
.research-systems__card:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.research-link-card__media {
  margin: 0;
  aspect-ratio: 1.52;
  overflow: hidden;
  background: var(--research-surface);
}
.research-link-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}
.research-link-card__link:hover .research-link-card__media img,
.research-link-card__link:focus-visible .research-link-card__media img { transform: scale(1.035); }
.research-link-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-height: 218px;
  padding: 22px;
}
.research-link-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  color: var(--research-accent);
  background: rgba(159, 39, 56, .08);
  border-radius: 4px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.research-link-card__content h3 {
  margin: 0;
  color: var(--research-ink);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  font-weight: 800;
  line-height: 1.2;
}
.research-link-card__content p {
  display: -webkit-box;
  margin: 0;
  color: var(--research-muted);
  font-size: .92rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.research-link-card__footer { display: flex; justify-content: flex-end; width: 100%; margin-top: auto; padding-top: 12px; }
.research-link-card__button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--research-accent-dark);
  border: 1px solid rgba(159, 39, 56, .58);
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}
.research-link-card__button::after {
  width: 7px; height: 7px; margin-left: 9px;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
  content: ""; transform: rotate(45deg);
}
.research-link-card__link:hover .research-link-card__button,
.research-link-card__link:focus-visible .research-link-card__button {
  color: #fff; background: var(--research-accent); border-color: var(--research-accent);
}

.research-systems { margin-top: 44px; }
.research-systems__container {
  display: grid;
  gap: 20px;
  padding-block: 28px 6px;
  border-top: 1px solid var(--research-line);
}
.research-systems__intro { display: grid; gap: 1px; }
.research-systems__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.research-systems__card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px 20px;
  color: var(--research-ink);
  background: #fff;
  border: 1px solid var(--research-line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 36, 60, .045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.research-systems__card:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 39, 56, .28);
  box-shadow: 0 16px 30px rgba(16, 36, 60, .09);
}
.research-systems__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  background: rgba(159, 39, 56, .07);
  border: 1px solid rgba(159, 39, 56, .14);
  border-radius: 8px;
}
.research-systems__card:nth-child(3n + 2) .research-systems__icon {
  background: rgba(13, 112, 116, .07); border-color: rgba(13, 112, 116, .16);
}
.research-systems__card:nth-child(3n) .research-systems__icon {
  background: rgba(179, 126, 22, .08); border-color: rgba(179, 126, 22, .17);
}
.research-systems__icon img {
  position: absolute;
  width: 42px; height: 42px;
  object-fit: contain;
  transition: opacity 180ms ease;
}
.research-systems__icon-hover { opacity: 0; }
.research-systems__card:hover .research-systems__icon-hover,
.research-systems__card:focus-visible .research-systems__icon-hover { opacity: 1; }
.research-systems__card:hover .research-systems__icon img:first-child,
.research-systems__card:focus-visible .research-systems__icon img:first-child:last-child { opacity: 1; }
.research-systems__card:hover .research-systems__icon img:first-child:not(:last-child),
.research-systems__card:focus-visible .research-systems__icon img:first-child:not(:last-child) { opacity: 0; }
.research-systems__text { display: grid; gap: 5px; }
.research-systems__text strong { font-size: 1rem; font-weight: 850; line-height: 1.15; }
.research-systems__text small { color: var(--research-muted); font-size: .8rem; line-height: 1.35; }
.research-systems__arrow { color: var(--research-accent); font-size: .78rem; }

@media (max-width: 991.98px) {
  .research-links__grid, .research-systems__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
  .research-links__grid, .research-systems__grid { grid-template-columns: 1fr; }
  .research-link-card__media { aspect-ratio: 1.75; }
  .research-link-card__content { min-height: 0; }
  .research-systems__card { min-height: 92px; }
}
@media (prefers-reduced-motion: reduce) {
  .research-link-card__link, .research-link-card__media img, .research-systems__card,
  .research-systems__icon img { transition: none; }
}
