#task-overview {
  align-content: start;
  grid-auto-rows: max-content;
  gap: 12px;
}

.overview-hero-panel {
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 247, 0.96) 46%, rgba(238, 244, 255, 0.95)),
    #fff;
  box-shadow: 0 24px 60px rgba(24, 48, 67, 0.14);
}

.overview-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 30px 30px;
}

.overview-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--accent), #185fa5 52%, var(--accent-warm));
}

.overview-hero-copy {
  position: relative;
  display: grid;
  gap: 18px;
  place-items: center;
  min-height: 150px;
  min-width: 0;
  padding: 8px 6vw 12px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(236, 247, 246, 0.3)),
    radial-gradient(circle at 50% 50%, rgba(19, 143, 139, 0.08), transparent 56%);
}

.overview-section-kicker {
  color: #185fa5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.overview-hero-copy h1 {
  margin: 0;
  max-width: 980px;
  color: #172b3f;
  font-size: 3.05rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.overview-hero-copy h1 span {
  display: block;
}

.overview-hero-cta-group {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.overview-hero-cta {
  padding: 13px 30px;
  border-radius: 12px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.overview-hero-cta::after {
  content: " \2192";
}

.overview-hero-cta-note {
  margin: 0;
  text-align: center;
}

.overview-hero-copy h1 strong {
  color: #138f8b;
  font-weight: 800;
}

.overview-hero-details {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}

.overview-ready-kicker {
  color: #185fa5;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.overview-illustration {
  margin: 0;
  min-width: 0;
}

.overview-figure-frame {
  border: 1px solid rgba(176, 197, 224, 0.72);
  border-radius: 14px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.92)),
    #fff;
  box-shadow: 0 24px 58px rgba(30, 65, 105, 0.18);
}

.overview-illustration img {
  display: block;
  width: 100%;
  border: 1px solid #dce8ec;
  border-radius: 10px;
  background: #fff;
}

.overview-summary {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.overview-summary h2 {
  margin: 0;
  color: #233c55;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.overview-summary > p {
  margin: 0;
  color: #3f5265;
  font-size: 0.86rem;
  line-height: 1.58;
  text-align: justify;
  text-align-last: left;
}

.overview-summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.overview-summary-list li {
  position: relative;
  padding-left: 18px;
  color: #4e6073;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
}

.overview-summary-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #138f8b;
  content: "";
}

.overview-summary-list strong {
  color: #264454;
  line-height: 1.4;
}

.overview-summary-link {
  color: #0f7673;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.overview-summary-link:hover {
  color: #0a5b59;
}

.overview-summary-link:focus-visible {
  border-radius: 2px;
  outline: 2px solid rgba(19, 143, 139, 0.34);
  outline-offset: 2px;
}

.overview-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.overview-value-item {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(24, 48, 67, 0.09);
}

.overview-value-item span {
  color: var(--accent-warm);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.overview-value-item strong {
  color: #1f3347;
  font-size: 0.94rem;
}

.overview-value-item p {
  margin: 0;
  color: #4e6073;
  font-size: 0.78rem;
  line-height: 1.48;
}

.overview-content-panel {
  display: grid;
  gap: 20px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 253, 252, 0.92)),
    #fff;
}

.overview-tab-nav-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid rgba(198, 215, 214, 0.86);
  border-radius: 12px;
  padding: 7px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 247, 247, 0.74)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 12px 26px rgba(24, 48, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.overview-tab-logo {
  width: 132px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(174, 196, 199, 0.7);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 14px rgba(24, 48, 67, 0.06);
  flex: 0 0 auto;
}

.overview-main-tabs {
  align-items: center;
  justify-self: start;
  display: inline-flex;
  gap: 3px;
  max-width: 100%;
  margin-bottom: 0;
  padding: 4px;
  border: 1px solid rgba(195, 211, 213, 0.9);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #eef4f4, #e8f0f0),
    #eef4f4;
  box-shadow: inset 0 1px 2px rgba(24, 48, 67, 0.08);
  overflow-x: auto;
  scrollbar-width: thin;
}

.overview-main-tabs .small-tab {
  position: relative;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 7px 15px;
  background: transparent;
  color: #355163;
  font-size: 0.74rem;
  letter-spacing: 0;
  box-shadow: none;
  white-space: nowrap;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.overview-main-tabs .small-tab:hover {
  border-color: rgba(149, 173, 178, 0.58);
  background: rgba(255, 255, 255, 0.58);
  color: #203747;
}

.overview-main-tabs .small-tab:focus-visible {
  outline: 2px solid rgba(19, 143, 139, 0.32);
  outline-offset: 2px;
}

.overview-main-tabs .small-tab.is-active {
  border-color: rgba(19, 143, 139, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(226, 246, 243, 0.9)),
    #eef9f7;
  color: #0f7673;
  box-shadow:
    0 7px 14px rgba(19, 143, 139, 0.12),
    inset 3px 0 0 rgba(19, 143, 139, 0.78);
  transform: translateY(-1px);
}

.overview-tab-panel {
  display: grid;
  align-content: start;
  grid-auto-rows: max-content;
  gap: 18px;
}

.overview-tab-panel[hidden] {
  display: none !important;
}

.overview-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.overview-section-grid-wide {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
}

.overview-block {
  border: 1px solid #e1eeeb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(24, 48, 67, 0.07);
}

.overview-block {
  padding: 18px;
  min-width: 0;
}

.overview-section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.overview-section-heading h2 {
  margin: 0;
  color: #233c55;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.overview-section-heading p {
  margin: 0;
  line-height: 1.58;
}

.overview-video-block {
  display: grid;
  align-content: start;
}

.overview-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #d8e7e7;
  border-radius: 12px;
  background: #0f204d;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.overview-video-frame {
  border: 0;
}

.overview-video-player {
  max-height: 420px;
}

.overview-flow {
  display: grid;
  gap: 10px;
}

.overview-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  border: 1px solid #e2ece9;
  border-radius: 12px;
  padding: 12px;
  background:
    linear-gradient(135deg, #ffffff, #f6fbfa),
    #fff;
}

.overview-step .step-kicker {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eaf7f5;
  color: #138f8b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0;
}

.overview-step .step-title {
  color: #264454;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.overview-step .step-copy {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.overview-paper-block {
  background:
    linear-gradient(180deg, rgba(248, 252, 251, 0.86), #fff 42%),
    #fff;
}

.overview-news-block {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(253, 247, 241, 0.88)),
    #fff;
}

.overview-news-list {
  display: grid;
  gap: 10px;
}

.overview-news-item {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid #e3eeeb;
  border-radius: 10px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.78);
}

.overview-news-item time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 8px;
  background: #fff2e8;
  color: #b85620;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.overview-news-item p {
  margin: 0;
  color: #2f4659;
  font-size: 0.82rem;
  line-height: 1.5;
}

.overview-news-item a {
  color: #0f7673;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.overview-news-item a:hover {
  color: #0b5f5d;
}

.overview-success-panel {
  gap: 18px;
}

.overview-success-block {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.9)),
    #fff;
}

.overview-success-section {
  display: grid;
  gap: 12px;
}

.overview-success-section + .overview-success-section {
  margin-top: 18px;
}

.overview-success-section-title {
  margin: 0;
  color: #233c55;
  font-size: 1rem;
  letter-spacing: 0;
}

.overview-success-grid {
  display: grid;
  gap: 14px;
}

.overview-story-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid #e2ece9;
  border-radius: 12px;
  padding: 16px;
  background:
    linear-gradient(135deg, #ffffff, #f7fbfc),
    #fff;
  box-shadow: 0 10px 22px rgba(24, 48, 67, 0.06);
}

.overview-story-logo-frame {
  display: grid;
  min-height: 170px;
  place-items: center;
  border: 1px solid #e2ecef;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.overview-story-logo-frame:is(a) {
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.overview-story-logo-frame:is(a):hover,
.overview-story-logo-frame:is(a):focus-visible {
  border-color: #b9dcd6;
  box-shadow: 0 10px 20px rgba(15, 118, 115, 0.12);
  transform: translateY(-1px);
}

.overview-story-logo-frame img {
  display: block;
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.overview-story-logo-frame-sigir img {
  max-height: 174px;
}

.overview-story-logo-frame-wcci {
  background:
    linear-gradient(180deg, #eef9fb, #ffffff),
    #fff;
}

.overview-next-up-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 172px));
  gap: 12px;
}

.overview-next-up-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 172px;
  min-height: 92px;
  border: 1px solid #cfdde8;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #1f4662, #185fa5 52%, #138f8b),
    #185fa5;
  padding: 14px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(24, 48, 67, 0.12);
}

.overview-next-up-item:hover {
  border-color: #9fd5d0;
  transform: translateY(-1px);
}

.overview-next-up-item-vldb {
  background: #f7fbfc;
}

.overview-next-up-item-icde {
  background: #fff;
}

.overview-next-up-item-sigir {
  background: #fff;
}

.overview-next-up-logo-sigir {
  max-height: 72px;
}

.overview-next-up-logo {
  display: block;
  width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.overview-next-up-logo-vldb {
  max-height: 74px;
}

.overview-next-up-logo-icde {
  width: auto;
  max-width: 100%;
  max-height: 78px;
}

.overview-story-copy {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.overview-story-kicker {
  color: #185fa5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.overview-story-copy h3 {
  margin: 0;
  color: #233c55;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.overview-story-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.overview-story-copy h3 a:hover {
  color: #0f7673;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.overview-story-copy p {
  margin: 0;
  color: #4e6073;
  font-size: 0.82rem;
  line-height: 1.58;
}

.overview-story-resources {
  display: grid;
  gap: 5px;
  margin-top: 3px;
  border-top: 1px solid #e2ece9;
  padding-top: 10px;
}

.overview-story-resources p {
  font-size: 0.76rem;
}

.overview-story-resources strong {
  color: #264454;
}

.overview-story-resources a {
  color: #0f7673;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.overview-story-resources a:hover,
.overview-story-resources a:focus-visible {
  color: #0b5f5d;
}

.overview-insights-panel {
  gap: 18px;
}

.overview-insights-intro {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 247, 0.92)),
    #fff;
}

.overview-insights-summary {
  max-width: 980px;
  margin: 0;
  color: #3f5265;
  font-size: 0.9rem;
  line-height: 1.65;
}

.overview-insights-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.overview-insights-use-item {
  border-top: 2px solid #9fd5d0;
  padding-top: 12px;
}

.overview-insights-use-item h3 {
  margin: 0 0 6px;
  color: #264454;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.overview-insights-use-item p {
  margin: 0;
  color: #4e6073;
  font-size: 0.8rem;
  line-height: 1.55;
}

.overview-insights-archive {
  display: grid;
  gap: 4px;
}

.overview-insights-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 560px));
  gap: 14px;
}

.overview-insights-archive-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  border: 1px solid #e2ece9;
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #fff, #f7fbfc);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.overview-insights-archive-card:hover,
.overview-insights-archive-card:focus-visible {
  border-color: rgba(19, 143, 139, 0.38);
  box-shadow: 0 10px 22px rgba(24, 48, 67, 0.09);
  transform: translateY(-1px);
}

.overview-insights-archive-logo {
  display: grid;
  min-height: 116px;
  place-items: center;
  border: 1px solid #e2ecef;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.overview-insights-archive-logo img {
  display: block;
  width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.overview-insights-archive-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.overview-insights-archive-copy h3 {
  margin: 0;
  color: #233c55;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.overview-insights-archive-copy p {
  margin: 0;
  color: #4e6073;
  font-size: 0.78rem;
  line-height: 1.5;
}

.overview-insights-archive-link {
  color: #0f7673;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.overview-collaboration-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(234, 247, 245, 0.92), rgba(238, 244, 255, 0.88)),
    #f7fbfb;
}

.overview-collaboration-cta h2 {
  margin: 0 0 6px;
  color: #233c55;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.overview-collaboration-cta p {
  max-width: 820px;
  margin: 0;
  color: #4e6073;
  font-size: 0.82rem;
  line-height: 1.58;
}

.overview-collaboration-contact {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 9px 16px;
  background: #0f7673;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.overview-collaboration-contact:hover,
.overview-collaboration-contact:focus-visible {
  background: #0b5f5d;
}

.overview-slides-block {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.9)),
    #fff;
}

.overview-slide-viewer {
  display: grid;
  gap: 14px;
  outline: none;
}

.overview-slide-viewer:focus-visible {
  outline: 2px solid rgba(19, 143, 139, 0.32);
  outline-offset: 4px;
  border-radius: 14px;
}

.overview-slide-stage {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #dce8e9;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #ffffff, #f5fafb),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.overview-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
  padding: 34px;
}

.overview-slide[hidden] {
  display: none !important;
}

.overview-slide-image-page {
  grid-template-columns: 1fr;
  align-items: center;
  padding: 18px;
}

.overview-slide-image-frame {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d8e7e7;
  border-radius: 12px;
  background: #f8fbfb;
  box-shadow: 0 10px 24px rgba(24, 48, 67, 0.08);
}

.overview-slide-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.overview-slide-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.overview-slide-copy:only-child {
  grid-column: 1 / -1;
}

.overview-slide-kicker {
  color: #0f7673;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.overview-slide h3 {
  max-width: 820px;
  margin: 0;
  color: #233c55;
  font-size: 1.9rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.overview-slide p {
  max-width: 720px;
  margin: 0;
  color: #3f5265;
  font-size: 1rem;
  line-height: 1.58;
}

.overview-slide-points {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.overview-slide-points li {
  position: relative;
  padding-left: 18px;
  color: #4e6073;
  font-size: 0.86rem;
  line-height: 1.48;
}

.overview-slide-points li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #138f8b;
  content: "";
}

.overview-slide-media {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 260px;
  border: 1px solid #e0eceb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.overview-slide-media img {
  display: block;
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.overview-slide-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.overview-slide-control {
  min-width: 104px;
}

.overview-slide-control:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.overview-slide-status {
  min-width: 64px;
  color: #355163;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.overview-slide-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.overview-slide-dot {
  width: 10px;
  height: 10px;
  border: 1px solid #a9c8c5;
  border-radius: 999px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.overview-slide-dot:hover,
.overview-slide-dot:focus-visible {
  border-color: #138f8b;
  transform: scale(1.1);
}

.overview-slide-dot.is-active {
  border-color: #0f7673;
  background: #138f8b;
}

.overview-publications-panel {
  gap: 18px;
}

.overview-publications-block {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 248, 0.92)),
    #fff;
}

.overview-publication-list {
  display: grid;
  gap: 14px;
}

.overview-publication-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid #e2ece9;
  border-radius: 12px;
  padding: 16px;
  background:
    linear-gradient(135deg, #ffffff, #f7fbfa),
    #fff;
  box-shadow: 0 10px 22px rgba(24, 48, 67, 0.06);
}

.overview-publication-badge {
  display: inline-flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe2df;
  border-radius: 12px;
  padding: 14px;
  background:
    linear-gradient(135deg, #eaf7f5, #eef4ff),
    #eef9f7;
  color: #0f7673;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.overview-publication-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.overview-publication-copy h3 {
  margin: 0;
  color: #233c55;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.overview-publication-copy p {
  margin: 0;
  color: #4e6073;
  font-size: 0.82rem;
  line-height: 1.58;
}

.overview-publication-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.overview-publication-status {
  color: #185fa5;
  font-size: 0.74rem;
  font-weight: 800;
}

.overview-publication-link {
  color: #0f7673;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.overview-publication-link:hover,
.overview-publication-link:focus-visible {
  color: #0b5f5d;
}

.overview-tabs {
  margin-bottom: 10px;
}

.overview-code-sample {
  overflow-x: auto;
  border: 1px solid #e4eeee;
  border-radius: 12px;
  background: #fbfdfd;
  color: #243f56;
  padding: 14px 16px;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  line-height: 1.7;
  white-space: pre;
}

.overview-output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.overview-output-item {
  border: 1px solid #e6efed;
  border-radius: 12px;
  padding: 14px;
  background:
    linear-gradient(180deg, #ffffff, #f8fcfb),
    #fff;
}

.overview-output-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.overview-output-icon-teal {
  background: linear-gradient(135deg, var(--accent), #48b9b5);
}

.overview-output-icon-blue {
  background: linear-gradient(135deg, #185fa5, #6f87ee);
}

.overview-output-icon-warm {
  background: linear-gradient(135deg, var(--accent-warm), #efad67);
}

.overview-output-item h3 {
  margin: 0 0 4px;
  color: #264454;
  font-size: 0.88rem;
}

.overview-output-item p {
  margin: 0;
}

.contributors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contributors-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contributors-grid-one {
  grid-template-columns: minmax(280px, 560px);
}

.overview-people-block {
  display: grid;
  gap: 16px;
}

.overview-group-panel {
  align-items: start;
}

.overview-people-section {
  display: grid;
  gap: 10px;
}

.overview-people-section h3 {
  margin: 0;
  color: #264454;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.contributor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 15px;
  border: 1px solid #e5efec;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f8fbfb);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.contributor-card:hover {
  border-color: rgba(19, 143, 139, 0.38);
  box-shadow: 0 10px 22px rgba(24, 48, 67, 0.09);
  transform: translateY(-1px);
}

.contributor-card-featured {
  width: min(100%, 560px);
  min-height: 120px;
}

.contributor-photo {
  width: 68px;
  height: 68px;
  border: 1px solid #e5efec;
  border-radius: 12px;
  background: #f4fbf9;
  object-fit: cover;
  flex-shrink: 0;
}

.contributor-meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contributor-name {
  color: #233c55;
  font-size: 0.9rem;
  line-height: 1.2;
}

.contributor-affiliation {
  line-height: 1.35;
}

.contributor-role {
  width: fit-content;
  border-radius: 6px;
  padding: 3px 7px;
  background: #eaf7f5;
  color: #0f7673;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
}

.contributor-link {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .overview-section-grid-wide,
  .overview-value-strip,
  .overview-hero-details {
    grid-template-columns: 1fr;
  }

  .overview-hero {
    gap: 18px;
  }
}

@media (max-width: 920px) {
  .overview-section-grid,
  .overview-output-grid,
  .overview-insights-use-grid,
  .contributors-grid,
  .contributors-grid-two,
  .contributors-grid-one,
  .overview-story-card,
  .overview-insights-archive-card,
  .overview-publication-card,
  .overview-slide {
    grid-template-columns: 1fr;
  }

  .overview-slide {
    align-items: start;
  }

  .overview-collaboration-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .overview-hero-copy {
    min-height: 132px;
    padding-inline: 4vw;
  }

  .overview-hero-copy h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 620px) {
  .overview-summary > p,
  .overview-summary-list li {
    text-align: left;
  }

  .overview-tab-nav-panel {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding: 8px;
  }

  .overview-main-tabs {
    width: 100%;
  }

  .overview-main-tabs .small-tab {
    flex: 0 0 auto;
    padding-inline: 8px;
    text-align: center;
  }

  .overview-hero {
    padding: 20px;
    gap: 16px;
  }

  .overview-hero-copy {
    min-height: 106px;
    padding: 8px 6px 12px;
  }

  .overview-hero-copy h1 {
    font-size: 1.62rem;
    line-height: 1.12;
  }

  .overview-tab-logo {
    width: 126px;
    height: 38px;
  }

  .contributor-card {
    align-items: flex-start;
  }

  .overview-news-item {
    grid-template-columns: 1fr;
  }

  .overview-story-card {
    padding: 13px;
  }

  .overview-story-logo-frame {
    min-height: 128px;
    padding: 14px;
  }

  .overview-insights-archive-grid {
    grid-template-columns: 1fr;
  }

  .overview-collaboration-contact {
    width: 100%;
  }

  .overview-slide-stage,
  .overview-slide {
    min-height: 0;
  }

  .overview-slide {
    padding: 20px;
  }

  .overview-slide h3 {
    font-size: 1.42rem;
  }

  .overview-slide-media {
    min-height: 180px;
  }
}
