/* Aurora-inspired theme for OpenROAD */
:root {
  --bg: #05060f;
  --bg-alt: #0a1024;
  --halo-1: rgba(115, 90, 255, 0.36);
  --halo-2: rgba(65, 236, 255, 0.28);
  --panel: rgba(12, 16, 34, 0.78);
  --panel-strong: rgba(18, 24, 48, 0.9);
  --panel-soft: rgba(12, 16, 34, 0.6);
  --line: rgba(125, 142, 255, 0.22);
  --text: #f5f7ff;
  --muted: rgba(208, 216, 255, 0.74);
  --brand: #68f8ff;
  --brand-2: #b38bff;
  --ok: #3bf4b5;
  --warn: #f6c65d;
  --err: #ff6f91;
  --radius: 22px;
  --shadow: 0 28px 60px rgba(5, 8, 24, 0.52);
  --shadow-soft: 0 24px 44px rgba(6, 10, 28, 0.38);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-alt);
  position: relative;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20vh -40vw auto;
  width: 120vw;
  height: 120vh;
  pointer-events: none;
  background: radial-gradient(circle at 15% 25%, var(--halo-1), transparent 60%),
              radial-gradient(circle at 85% 10%, var(--halo-2), transparent 55%);
  z-index: 0;
}
body::after {
  inset: auto -30vw -20vh;
  background: radial-gradient(circle at 80% 85%, rgba(104, 248, 255, 0.18), transparent 55%),
              radial-gradient(circle at 10% 90%, rgba(179, 139, 255, 0.22), transparent 60%);
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 180ms ease;
}
a:hover { color: #a8fbff; text-decoration: underline; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 34px 96px;
}

/* Header & navigation */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 40px 0 64px;
  padding: 22px 28px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(20, 26, 55, 0.92), rgba(14, 18, 38, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
  overflow: hidden;
}
.nav::before,
.nav::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.nav::before {
  top: -40%;
  left: 55%;
  width: 320px;
  height: 180%;
  background: radial-gradient(circle at left, rgba(179, 139, 255, 0.38), transparent 66%);
  opacity: 0.55;
}
.nav::after {
  top: -28%;
  right: -30%;
  width: 360px;
  height: 190%;
  background: radial-gradient(circle at center, rgba(104, 248, 255, 0.32), transparent 70%);
  transform: rotate(-12deg);
  opacity: 0.7;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
}
.logo img { display: block; filter: drop-shadow(0 0 6px rgba(104, 248, 255, 0.45)); }
.nav nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(104, 248, 255, 0.0), rgba(104, 248, 255, 0.8), rgba(179, 139, 255, 0.0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 220ms ease;
}
.nav a:hover,
.nav a.active {
  color: var(--text);
}
.nav a.active::after,
.nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
main { display: flex; flex-direction: column; gap: 54px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: 48px;
  padding: 12px 0 24px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -60px -80px -40px 40%;
  background: radial-gradient(circle at 20% 35%, rgba(179, 139, 255, 0.26), transparent 70%);
  filter: blur(50px);
  z-index: -1;
}
.hero .title {
  margin: 0 0 20px;
  font-size: clamp(46px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: #f8f9ff;
}
.hero .subtitle {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 48ch;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(152, 169, 255, 0.28);
  background: rgba(16, 22, 45, 0.65);
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: 0 12px 28px rgba(8, 12, 28, 0.25);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(104, 248, 255, 0.55);
  box-shadow: 0 18px 32px rgba(8, 12, 28, 0.32);
}
.btn.primary {
  background: linear-gradient(135deg, rgba(104, 248, 255, 0.95), rgba(179, 139, 255, 0.9));
  color: #041018;
  border: 0;
  box-shadow: 0 15px 38px rgba(104, 248, 255, 0.32);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(104, 248, 255, 0.36);
}

/* Cards & grids */
section.card {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
section.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(104, 248, 255, 0.08), rgba(179, 139, 255, 0.05));
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
section.card:hover::before { opacity: 1; }
section.card h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
section.card p { margin: 0 0 12px; }
section.card ul { margin: 0; padding-left: 20px; }

.grid {
  display: grid;
  gap: 28px;
}
.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.news-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-card {
  background: var(--panel-strong);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 248, 255, 0.4);
  box-shadow: 0 16px 40px rgba(20, 24, 52, 0.45);
}

.news-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.news-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.news-card h3 a:hover {
  color: #aee8ff;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(104, 248, 255, 0.12);
  color: var(--brand);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
}

.news-filter {
  background: transparent;
  border: 1px solid rgba(104, 248, 255, 0.28);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-filter:hover {
  border-color: rgba(104, 248, 255, 0.55);
  color: #e3fbff;
}

.news-view-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
}

.news-view {
  background: rgba(104, 248, 255, 0.08);
  border: 1px solid rgba(104, 248, 255, 0.24);
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.news-view:hover {
  border-color: rgba(104, 248, 255, 0.48);
  color: #e3fbff;
  transform: translateY(-1px);
}

.news-view.active {
  background: rgba(104, 248, 255, 0.18);
  border-color: rgba(104, 248, 255, 0.6);
  color: #e3fbff;
  box-shadow: 0 10px 30px rgba(20, 24, 52, 0.35);
}

.news-view-archive {
  margin-left: auto;
  color: var(--brand);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-view-archive::after {
  content: '→';
  font-size: 0.9em;
}

.news-view-archive:hover {
  color: #e3fbff;
}

.news-card.extra-card {
  display: none;
}

@media (max-width: 720px) {
  .nav {
    margin: 28px 0 44px;
    padding: 18px 22px;
  }
  .page-hero {
    padding: 28px 26px 26px;
  }
  .page-hero::after {
    right: -48%;
    width: 88%;
  }
  .eyebrow::after {
    width: 38px;
  }
}

.news-filter.active {
  background: var(--brand);
  color: #041322;
  border-color: transparent;
}

.news-meta {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(181, 205, 255, 0.68);
}

.news-link {
  color: #9df7ff;
  font-weight: 600;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

.pub-intro p:last-child {
  margin-bottom: 0;
}

.pub-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pub-year {
  background: var(--panel-strong);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pub-year-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pub-year-header h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.pub-year-link {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.pub-year-link:hover {
  color: #c9fdff;
}

.pub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pub-item {
  border-top: 1px solid rgba(125, 142, 255, 0.18);
  padding-top: 16px;
}

.pub-item.pub-first {
  border-top: none;
  padding-top: 0;
}

.pub-title {
  color: var(--text);
  font-weight: 600;
  display: inline-block;
}

.pub-title:hover {
  color: #aee8ff;
}

.pub-meta {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.pub-assets {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  font-size: 0.86rem;
}

.pub-asset {
  color: var(--brand);
  font-weight: 500;
}

.pub-asset:hover {
  color: #c9fdff;
}

.pub-archive {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pub-archive-index {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pub-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pub-index a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 16px;
  border: 1px solid rgba(104, 248, 255, 0.28);
  background: rgba(104, 248, 255, 0.08);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.pub-index a:hover {
  border-color: rgba(104, 248, 255, 0.5);
  color: #c9fdff;
}

.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f6f8ff;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(62, 80, 140, 0.18);
  padding: 18px 22px;
  box-shadow: 0 20px 46px rgba(12, 18, 42, 0.14);
  color: #0c1228;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(62, 80, 140, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #223160;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.team-card h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: #0b1030;
}

.team-meta {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(64, 79, 118, 0.78);
}

.muted { color: var(--muted); }
.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(104, 248, 255, 0.16);
  border: 1px solid rgba(104, 248, 255, 0.36);
  color: #9df7ff;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(8, 16, 42, 0.42);
  backdrop-filter: blur(16px);
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(104, 248, 255, 0.0), rgba(104, 248, 255, 0.6));
  opacity: 0.75;
}

/* Pages */
.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
  padding: 38px 42px 34px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(120, 140, 255, 0.26);
  background: linear-gradient(135deg, rgba(18, 24, 48, 0.92), rgba(9, 14, 30, 0.82));
  box-shadow: 0 32px 70px rgba(5, 12, 32, 0.55);
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-hero::before {
  top: -40%;
  left: -22%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle at top, rgba(179, 139, 255, 0.34), transparent 72%);
  opacity: 0.65;
}
.page-hero::after {
  top: -20%;
  right: -32%;
  width: 70%;
  height: 160%;
  background: radial-gradient(circle at 30% 40%, rgba(104, 248, 255, 0.35), transparent 75%);
  opacity: 0.6;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 58px);
  letter-spacing: -0.045em;
}
.page-hero p {
  margin: 0;
  max-width: 62ch;
  color: rgba(210, 220, 255, 0.78);
}

.resource-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 32px;
}
.resource-card {
  position: relative;
  background: var(--panel-strong);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(120, 140, 255, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.resource-card::after {
  content: "";
  position: absolute;
  inset: -10% -20% 60% 40%;
  background: radial-gradient(circle at top left, rgba(104, 248, 255, 0.18), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.resource-card h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}
.resource-card p {
  margin: 0 0 20px;
  color: var(--muted);
}
.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.link-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.link-list li::before {
  content: "→";
  color: var(--brand);
  font-weight: 600;
  transition: transform 180ms ease;
}
.link-list a {
  color: var(--text);
  font-weight: 500;
}
.link-list a:hover {
  color: #c9fdff;
}
.link-list li:hover::before {
  transform: translateX(4px);
}

.blog-card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-card {
  background: var(--panel-strong);
  border-radius: var(--radius);
  border: 1px solid rgba(120, 140, 255, 0.18);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(104, 248, 255, 0.26);
}
.blog-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: #c9fdff;
}
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.collection {
  margin-bottom: 48px;
}
.collection:last-of-type {
  margin-bottom: 0;
}
.collection h2 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.asset-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.asset-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.asset-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(104, 248, 255, 0.24);
}
.asset-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.asset-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.asset-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.asset-card h3 a:hover {
  color: #c9fdff;
}
.asset-card p {
  margin: 0;
  color: var(--muted);
}
.asset-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(104, 248, 255, 0.16);
  color: #8fefff;
  border: 1px solid rgba(104, 248, 255, 0.32);
}

/* Tables, lists inside prose */
.prose p { margin: 0 0 14px; }
.prose ul { padding-left: 20px; margin: 0 0 16px; }
.prose li { margin: 6px 0; }
.prose h1, .prose h2, .prose h3 { margin: 24px 0 12px; }
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(125, 142, 255, 0.18);
  background: rgba(12, 16, 32, 0.6);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: rgba(18, 24, 48, 0.78);
  border: 1px solid rgba(125, 142, 255, 0.25);
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
}
.prose th, .prose td {
  border: 1px solid rgba(125, 142, 255, 0.18);
  padding: 12px 14px;
  text-align: left;
}
.prose blockquote {
  margin: 18px 0;
  padding: 16px 20px;
  border-left: 4px solid rgba(104, 248, 255, 0.6);
  background: rgba(12, 18, 38, 0.72);
  border-radius: calc(var(--radius) - 8px);
  color: var(--muted);
}
.prose code, .prose pre {
  font-family: "JetBrains Mono", "Fira Code", Consolas, "Courier New", monospace;
  background: rgba(10, 14, 30, 0.85);
  border: 1px solid rgba(125, 142, 255, 0.16);
  border-radius: calc(var(--radius) - 12px);
}
.prose code { padding: 3px 6px; }
.prose pre { padding: 16px; overflow-x: auto; }

/* Footer */
footer {
  margin-top: 80px;
  border-top: 1px solid rgba(125, 142, 255, 0.16);
  padding: 40px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
footer .wrap {
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  color: inherit;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .nav nav ul { flex-wrap: wrap; justify-content: flex-start; row-gap: 12px; }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero::after { inset: -80px -40px -60px -40px; }
}

@media (max-width: 680px) {
  .wrap { padding: 0 20px 80px; }
  .nav { margin: 28px 0 48px; }
  .nav nav ul { gap: 16px; }
  .btn { width: 100%; justify-content: center; }
  .resource-card { padding: 26px; }
}

/* Imported pages */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}
.imported-main{display:block;padding:0;margin:0;}
.imported-content{background:var(--panel-strong);border:1px solid rgba(125,142,255,0.18);border-radius:var(--radius);box-shadow:var(--shadow-soft);padding:40px;max-width:100%;overflow:hidden;}
.imported-content > *:first-child{margin-top:0;}
.imported-content > *:last-child{margin-bottom:0;}
.imported-content--light {
  --text: #0c1228;
  --muted: rgba(66, 78, 112, 0.9);
  --brand: #2f67ff;
  --line: rgba(62, 80, 140, 0.16);
  background: #f6f8ff;
  border: 1px solid rgba(62, 80, 140, 0.16);
  color: var(--text);
  box-shadow: 0 32px 72px rgba(22, 36, 78, 0.18);
}
.imported-content--light a { color: var(--brand); }
.imported-content--light a:hover { color: #103bff; }

.news-tag-inline {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(104, 248, 255, 0.1);
  color: var(--brand);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 8px;
}
