/* ============================================
   SCIPYO — INSIGHTS / PUBLICATIONS (Hakluyt direction)
   The signature section. Magazine-style list,
   not card grid. Each entry is an editorial item.
   ============================================ */

.insights-editorial {
  background: #FFFFFF;
  padding: 140px 0 160px;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
}

.insights-editorial__container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.insights-editorial__header {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 88px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.18);
}

.insights-editorial__title-block {
  flex: 1;
  min-width: 280px;
}

.insights-editorial__overline {
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #8C9197;
  margin: 0 0 24px;
}

.insights-editorial__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #0A2540;
  margin: 0 0 16px;
}

.insights-editorial__lede {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #4A5158;
  margin: 0;
  max-width: 560px;
}

.insights-editorial__view-all {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0A2540;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 200ms ease, letter-spacing 300ms ease;
}

.insights-editorial__view-all:hover {
  opacity: 0.55;
  letter-spacing: 0.06em;
}

/* === Each publication entry === */
.publication {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid rgba(10, 37, 64, 0.10);
  text-decoration: none;
  color: inherit;
  transition: background-color 200ms ease;
}

.publication:first-of-type {
  border-top: none;
  padding-top: 0;
}

.publication:hover {
  background-color: rgba(10, 37, 64, 0.015);
}

.publication:hover .publication__title {
  color: #1B3A5C;
}

.publication:hover .publication__read::after {
  transform: translateX(3px);
}

/* Left column: meta */
.publication__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.publication__category {
  color: #0A2540;
  letter-spacing: 0.22em;
}

.publication__date {
  color: #8C9197;
  letter-spacing: 0.16em;
}

/* Right column: title + excerpt */
.publication__body {
  display: flex;
  flex-direction: column;
}

.publication__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0A2540;
  margin: 0 0 14px;
  transition: color 200ms ease;
}

.publication__excerpt {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #4A5158;
  margin: 0 0 20px;
}

.publication__read {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0A2540;
  align-self: flex-start;
  position: relative;
}

.publication__read::after {
  content: ' →';
  display: inline;
  margin-left: 4px;
  transition: transform 200ms ease;
}

@media (max-width: 768px) {
  .insights-editorial {
    padding: 96px 0 100px;
  }
  .insights-editorial__container {
    padding: 0 24px;
  }
  .insights-editorial__header {
    margin-bottom: 64px;
    padding-bottom: 40px;
  }
  .publication {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .publication__title {
    font-size: 1.375rem;
  }
  .publication__excerpt {
    font-size: 0.9375rem;
  }
}

/* === Hide legacy insights section === */
#insights .insights-preview__grid,
#insights .section-header,
.insights-preview__grid {
  display: none !important;
}
#insights {
  display: none !important;
}
