/* ============================================================
   blog.css — Blog-specific styles for TrialBridge Legal Services LLP
   Relies on global CSS vars and helper classes from style.css.
   ============================================================ */

/* ── Blog Hero ── */
.blog-hero-title { font-size: clamp(2rem, 4vw, 3rem); }
.blog-hero-sub   { max-width: 600px; }

/* ── Category Filter Pills ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-pill {
  display: inline-block;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.filter-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.filter-pill.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Blog Card ── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-thumb {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--navy);
  flex-shrink: 0;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

/* Placeholder when no cover image */
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft, #1b3561) 100%);
  color: var(--gold);
}

.blog-card-placeholder i {
  font-size: 2.8rem;
  margin-bottom: .5rem;
  opacity: .8;
}

.blog-card-placeholder span {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Category badge over card thumb */
.blog-badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
}

/* Card body */
.blog-card-body {
  padding: 1.4rem 1.4rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .6rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.blog-card-title a:hover { color: var(--gold); }

.blog-card-excerpt {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

/* Card meta row */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--sans);
  margin-bottom: .9rem;
  flex-wrap: wrap;
}

.blog-card-meta i { color: var(--gold); font-size: .75rem; }
.blog-card-meta .dot { color: var(--line); }

/* Read More link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: gap .2s, color .2s;
  margin-top: auto;
}

.read-more:hover { gap: .6rem; color: var(--navy); }

/* ── Empty State ── */
.blog-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
  grid-column: 1 / -1;
}

.blog-empty i { font-size: 3rem; color: var(--line); margin-bottom: 1rem; display: block; }
.blog-empty h3 { font-family: var(--serif); color: var(--navy); margin-bottom: .5rem; }

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 .75rem;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.page-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.page-link.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  cursor: default;
}

.page-link.disabled {
  opacity: .4;
  pointer-events: none;
}

/* ── Single Post Layout ── */
.post-hero .hero-copy { max-width: 820px; }

.post-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.4rem;
  font-family: var(--sans);
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: 1rem;
}

.post-meta-bar i { color: var(--gold); margin-right: .3rem; }
.post-meta-bar .post-cat-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 50px;
}

/* Post body wrapper */
.post-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

/* Large cover image in post body */
.post-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  display: block;
}

/* ── Post Content Typography ── */
.post-content {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
}

.post-content h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.2rem 0 .8rem;
  line-height: 1.3;
}

.post-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.8rem 0 .7rem;
  line-height: 1.35;
}

.post-content h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 .5rem;
}

.post-content p { margin: 0 0 1.2rem; }

.post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.post-content a:hover { color: var(--navy); }

.post-content ul,
.post-content ol {
  margin: 0 0 1.2rem 1.4rem;
}

.post-content li { margin-bottom: .45rem; }

.post-content blockquote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.5rem 1.2rem 1.8rem;
  border-left: 4px solid var(--gold);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
}

.post-content blockquote p { margin-bottom: 0; }

.post-content img {
  max-width: 100%;
  border-radius: calc(var(--radius) / 2);
  box-shadow: var(--shadow-sm);
  margin: 1.2rem 0;
  display: block;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}

.post-content th,
.post-content td {
  border: 1px solid var(--line);
  padding: .65rem .9rem;
  text-align: left;
}

.post-content th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.post-content tr:nth-child(even) td { background: var(--bg-soft); }

/* ── Tags Row ── */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.post-tags-label {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tag-pill {
  display: inline-block;
  padding: .3rem .85rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.tag-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Social Share ── */
.share-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.share-label {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: .25rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}

.share-btn:hover { opacity: .85; transform: translateY(-1px); }

.share-linkedin  { background: #0a66c2; color: #fff; }
.share-twitter   { background: #000; color: #fff; }
.share-facebook  { background: #1877f2; color: #fff; }
.share-whatsapp  { background: #25d366; color: #fff; }
.share-copy      { background: var(--navy); color: var(--white); }

/* ── Related Posts ── */
.related-section {
  padding: 3rem 0;
  background: var(--bg-soft);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .related-grid { grid-template-columns: 1fr; }
}

.related-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
}

.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.related-card-thumb {
  height: 140px;
  background: var(--navy);
  overflow: hidden;
  flex-shrink: 0;
}

.related-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.related-card:hover .related-card-thumb img { transform: scale(1.06); }

.related-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft, #1b3561) 100%);
  color: var(--gold);
  font-size: 2rem;
  opacity: .8;
}

.related-card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
}

.related-card-cat {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
  display: block;
}

.related-card-title {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .5rem;
}

.related-card-date {
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--sans);
}

/* ── Back link ── */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: gap .2s;
}

.post-back:hover { gap: .65rem; }

/* ── 404 State ── */
.not-found-section {
  text-align: center;
  padding: 6rem 1rem;
}

.not-found-section i { font-size: 4rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.not-found-section h1 { font-family: var(--serif); color: var(--navy); margin-bottom: .75rem; }
.not-found-section p { color: var(--muted); margin-bottom: 1.5rem; }

/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  .post-wrapper { padding: 2rem 0 3rem; }
  .post-content { font-size: 1rem; }
  .share-section { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   INSIGHTS LANDING PAGE
   ===================================================================== */
.accent-text { color: var(--gold); }

/* ----- Hero ----- */
.insights-hero {
  padding: 116px 0 64px;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.95) 36%, rgba(255,255,255,.55) 52%, rgba(255,255,255,0) 68%),
    url("images/insights-hero.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: cover, cover;
}
.ins-hero-grid { width: 100%; }
.ins-hero-copy { max-width: 540px; }
.ins-hero-copy h1 { font-family: var(--serif); font-size: clamp(30px,3.6vw,46px); line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
.ins-hero-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 520px; margin-bottom: 28px; }
.btn-primary-navy { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(11,31,58,.25); }
.btn-primary-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn-outline-navy { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline-navy:hover { border-color: var(--navy); transform: translateY(-2px); }

.ins-hero-visual { position: relative; min-height: 320px; display: flex; justify-content: center; align-items: center; }
.preview-card { position: relative; z-index: 2; width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 22px; }
.pc-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.pc-head span { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--navy); }
.pc-head .fa-circle-check { color: #1f9d55; }
.preview-card h4 { font-size: 15px; color: var(--navy); line-height: 1.4; margin-bottom: 16px; }
.pc-chart { display: flex; align-items: flex-end; gap: 8px; height: 64px; margin-bottom: 18px; padding: 12px; background: var(--bg-soft); border-radius: 10px; }
.pc-chart span { flex: 1; background: linear-gradient(180deg, var(--gold-light), var(--gold)); border-radius: 4px 4px 0 0; }
.pc-chart span:nth-child(1){height:40%}.pc-chart span:nth-child(2){height:65%}.pc-chart span:nth-child(3){height:50%}.pc-chart span:nth-child(4){height:85%}.pc-chart span:nth-child(5){height:70%}
.pc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.pc-list li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink); margin-bottom: 8px; }
.pc-list .fa-circle { font-size: 7px; }
.cat-spines { position: absolute; right: -8px; bottom: 6px; z-index: 1; display: flex; flex-direction: column; gap: 7px; }
.cat-spines span { background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 9px 16px 9px 22px; border-radius: 5px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--gold); }

/* ----- Search + categories ----- */
.ins-tools { margin-top: -34px; position: relative; z-index: 6; padding-bottom: 10px; }
.tools-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 26px 28px; }
.tools-top { display: flex; gap: 26px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-bottom: 24px; }
.ins-search { flex: 1; min-width: 280px; position: relative; display: flex; align-items: center; }
.ins-search > .fa-magnifying-glass { position: absolute; left: 16px; color: var(--muted); font-size: 14px; }
.ins-search input { width: 100%; padding: 13px 52px 13px 42px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 14px; background: var(--bg-soft); }
.ins-search input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(217,154,43,.15); }
.ins-search button { position: absolute; right: 8px; width: 36px; height: 36px; border: 0; border-radius: 8px; background: var(--navy); color: #fff; cursor: pointer; }
.browse-head { display: flex; align-items: center; gap: 18px; }
.browse-head > span { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 17px; }
.browse-head a { color: var(--gold); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.cat-icons { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.cat-icon-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; padding: 16px 8px; border-radius: 12px; transition: background .2s, transform .2s; }
.cat-icon-item:hover, .cat-icon-item.active { background: var(--bg-soft); transform: translateY(-3px); }
.cii-circle { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); font-size: 20px; border: 1px solid var(--line); }
.cat-icon-item:hover .cii-circle, .cat-icon-item.active .cii-circle { background: var(--navy); color: #fff; }
.cii-label { font-size: 12px; color: var(--navy); font-weight: 600; line-height: 1.3; }

/* ----- Section headings ----- */
.block-heading, .col-heading { font-family: var(--serif); color: var(--navy); }
.block-heading { font-size: 24px; margin-bottom: 24px; }
.col-heading { font-size: 18px; margin-bottom: 18px; }
.col-heading-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.col-heading-row .col-heading { margin-bottom: 0; }
.col-link { color: var(--gold); font-weight: 600; font-size: 12px; display: inline-flex; gap: 5px; align-items: center; white-space: nowrap; }
.results-count { color: var(--muted); font-size: 14px; margin: -8px 0 26px; }
.results-count a { color: var(--gold); font-weight: 600; }

/* ----- Featured + alerts ----- */
.feat-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.featured-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.feat-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-thumb { display: block; height: 92px; overflow: hidden; }
.feat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feat-ph { height: 92px; display: grid; place-items: center; font-size: 26px; color: #fff; background: linear-gradient(150deg, var(--navy), var(--navy-soft)); }
.feat-body { padding: 13px 13px 16px; display: flex; flex-direction: column; flex: 1; }
.feat-cat { font-size: 9.5px; font-weight: 700; letter-spacing: .6px; color: var(--gold); background: rgba(217,154,43,.12); padding: 3px 8px; border-radius: 5px; align-self: flex-start; margin-bottom: 9px; }
.feat-body h3 { font-size: 13px; line-height: 1.4; margin-bottom: 10px; }
.feat-body h3 a { color: var(--navy); }
.feat-body h3 a:hover { color: var(--gold); }
.feat-meta { font-size: 11px; color: var(--muted); margin-bottom: 6px; margin-top: auto; }
.feat-date { font-size: 11px; color: #9aa3b2; }

.alerts-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.alerts-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.alerts-head h3 { font-family: var(--serif); font-size: 18px; color: var(--navy); }
.alerts-head a { color: var(--gold); font-weight: 600; font-size: 11.5px; white-space: nowrap; }
.alert-item { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.alert-item:last-child { border-bottom: 0; }
.alert-icon { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; font-size: 15px; }
.tone-navy{background:#e7ecf5;color:var(--navy)}.tone-rose{background:#fde8e8;color:#c0392b}.tone-amber{background:#fdf0d8;color:var(--gold)}.tone-blue{background:#e2eefb;color:#2563eb}.tone-green{background:#e3f5ea;color:#1f9d55}
.alert-item p { font-size: 13px; color: var(--ink); line-height: 1.4; margin-bottom: 3px; }
.alert-item span { font-size: 11.5px; color: var(--muted); }

/* ----- 4-column row ----- */
.insights-columns { display: grid; grid-template-columns: 1fr 1fr 1.1fr .8fr; gap: 30px; align-items: start; }
.mr-list { counter-reset: mr; }
.mr-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.mr-list li:last-child { border-bottom: 0; }
.mr-num { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 18px; width: 16px; flex: none; }
.mr-thumb { width: 40px; height: 40px; flex: none; border-radius: 8px; display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); font-size: 15px; }
.mr-body a { display: block; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.mr-body a:hover { color: var(--gold); }
.mr-tag { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: .3px; }

.ru-list li { display: flex; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.ru-list li:last-child { border-bottom: 0; }
.ru-list i { color: var(--gold); margin-top: 3px; }
.ru-list a { display: block; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.ru-list a:hover { color: var(--gold); }
.ru-list span { font-size: 11.5px; color: var(--muted); }

.ind-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ind-tile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 8px; background: #fff; border: 1px solid var(--line); border-radius: 10px; transition: transform .2s, border-color .2s; }
.ind-tile:hover { transform: translateY(-3px); border-color: var(--gold); }
.ind-tile i { font-size: 20px; color: var(--navy); }
.ind-tile span { font-size: 11px; font-weight: 600; color: var(--navy); line-height: 1.25; }

.topic-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-pill { font-size: 12px; color: var(--navy); background: #fff; border: 1px solid var(--line); padding: 7px 13px; border-radius: 20px; transition: all .2s; }
.topic-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ----- Newsletter + impact ----- */
.news-impact { display: grid; grid-template-columns: 1.1fr 1fr; gap: 26px; align-items: stretch; }
.newsletter-card { background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft)); border-radius: 16px; padding: 30px 32px; color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.newsletter-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; }
.newsletter-card p { font-size: 13.5px; color: #cdd6e4; line-height: 1.6; }
.news-form { display: flex; flex-direction: column; gap: 11px; }
.news-form input, .news-form select { padding: 11px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.08); color: #fff; font-family: var(--sans); font-size: 13.5px; }
.news-form input::placeholder { color: #aab4c5; }
.news-form select { color: #cdd6e4; }
.news-form option { color: #1c2333; }
.news-form input:focus, .news-form select:focus { outline: none; border-color: var(--gold); }
.news-form .btn { width: 100%; justify-content: center; margin-top: 2px; }
.news-form small { color: #9aa6ba; font-size: 11px; text-align: center; }
.news-success { background: rgba(31,157,85,.18); border: 1px solid rgba(31,157,85,.5); color: #d7f5e3; font-size: 13px; padding: 9px 12px; border-radius: 8px; display: flex; align-items: center; gap: 8px; }

.impact-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 30px 32px; }
.impact-box h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 22px; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.impact-item { display: flex; align-items: center; gap: 13px; }
.impact-item > i { font-size: 24px; color: var(--gold); }
.impact-item strong { font-family: var(--serif); font-size: 24px; color: var(--navy); display: block; line-height: 1; }
.impact-item span { font-size: 12px; color: var(--muted); }

/* ----- Future features ----- */
.future-sec { padding-top: 0; }
.future-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 28px 30px; }
.future-item { display: flex; gap: 16px; align-items: flex-start; }
.future-icon { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--navy); font-size: 20px; }
.future-item h4 { font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.future-item h4 em { color: var(--gold); font-style: normal; font-weight: 600; font-size: 12px; }
.future-item p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ----- Insights responsive ----- */
@media (max-width: 1024px) {
  .insights-hero { min-height: 400px; background-position: left center, 72% center; }
  .cat-icons { grid-template-columns: repeat(4, 1fr); }
  .feat-layout { grid-template-columns: 1fr; }
  .insights-columns { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news-impact { grid-template-columns: 1fr; }
  .future-row { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 620px) {
  .insights-hero {
    min-height: auto; padding: 110px 0 40px;
    background-image: linear-gradient(180deg,#fff 0%, var(--bg-soft) 100%);
  }
  .ins-hero-copy { max-width: none; }
  .tools-top { flex-direction: column; align-items: stretch; }
  .cat-icons { grid-template-columns: repeat(3, 1fr); }
  .featured-cards { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .insights-columns { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; gap: 18px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .cat-spines { display: none; }
}
