/* ======== INSIGHTS ======== */
/* Index page insights grid (from index.html) */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.insight-card {
  position: relative;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--red-accent);
  transform: translateY(-4px);
}

.insight-card__date {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-accent);
  margin-bottom: var(--space-3);
}

.insight-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.insight-card__excerpt {
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.6;
  flex-grow: 1;
}

.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--red-light);
  transition: color var(--transition-fast);
}

.insight-card__link:hover {
  color: var(--white);
}

.insight-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.insights__cta {
  text-align: center;
}

/* Insights Page Styles (from insights.html) */
.page-header {
  padding: var(--space-20) 0 var(--space-16);
  text-align: center;
}

.page-header__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: var(--space-4);
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.page-header__subtitle {
  font-size: 1.125rem;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto;
}

/* Insights page grid (full page variant) */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-bottom: var(--space-20);
}

/* Insights page card date uses mono font */
.insights-grid .insight-card__date {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

/* Insights page card title */
.insights-grid .insight-card__title {
  margin-bottom: var(--space-4);
}

/* Insights page card excerpt */
.insights-grid .insight-card__excerpt {
  margin-bottom: var(--space-6);
}

/* Insights page card link */
.insights-grid .insight-card__link {
  gap: var(--space-4);
  color: var(--red-accent);
  transition: gap var(--transition-fast);
  margin-top: 0;
}

.insights-grid .insight-card:hover .insight-card__link {
  gap: calc(var(--space-4) + 4px);
}

/* Insights page card hover */
.insights-grid .insight-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Insights page header */
.header {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--white-10);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__back {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--white-60);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.header__back:hover {
  color: var(--white);
}

.header__back svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Single Insight Post Content */
.policy-content {
  font-size: 1.0625rem;
  color: var(--white-75);
  line-height: 1.8;
}

.policy-content p {
  margin-bottom: var(--space-6);
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.policy-content h4,
.policy-content h5,
.policy-content h6 {
  font-weight: 600;
  color: var(--white);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.policy-content strong,
.policy-content b {
  color: var(--white);
  font-weight: 600;
}

.policy-content em,
.policy-content i {
  font-style: italic;
}

.policy-content a {
  color: var(--red-light);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 2px;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.policy-content a:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

.policy-content ul,
.policy-content ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.policy-content li {
  margin-bottom: var(--space-2);
}

.policy-content li::marker {
  color: var(--red-accent);
}

.policy-content blockquote {
  border-left: 3px solid var(--red-accent);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-6) 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--white-80);
}

.policy-content img {
  border-radius: var(--radius-md);
  margin: var(--space-6) 0;
}

.policy-content hr {
  border: none;
  border-top: 1px solid var(--white-10);
  margin: var(--space-8) 0;
}

/* Insights Responsive */
@media (max-width: 900px) {
  .insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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