@import url("base.css");

body.page-insight-detail {
  background: linear-gradient(
    180deg,
    rgba(163, 180, 156, 0.96) 0%,
    rgba(163, 180, 156, 0.88) 100%
  );
  color: var(--color-text-dark);
}

body.page-insight-detail::before,
body.page-insight-detail::after {
  display: none;
}

.hero--detail {
  background: linear-gradient(
    160deg,
    rgba(15, 31, 53, 0.82) 0%,
    rgba(15, 31, 53, 0.68) 100%
  );
  color: #ffffff;
  padding: clamp(5rem, 12vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.hero--detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
}

.hero--detail .container {
  position: relative;
  z-index: 1;
}

.hero--detail .eyebrow {
  color: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero--detail h1 {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.hero--detail p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.7;
}

.insight-article {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 20px 40px rgba(15, 31, 53, 0.15);
  border: 1px solid rgba(15, 31, 53, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-article__category {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-brand-deep);
}

.insight-article__summary {
  font-size: 1.1rem;
  color: rgba(15, 31, 53, 0.75);
  line-height: 1.8;
  margin: 0;
}

.insight-article__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(15, 31, 53, 0.88);
}

.insight-article__body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.insight-article__body li {
  margin-bottom: 0.5rem;
}

.insight-article__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.insight-article__cta-note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(15, 31, 53, 0.7);
}

.insight-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: rgba(15, 31, 53, 0.6);
  border-top: 1px solid rgba(15, 31, 53, 0.12);
  padding-top: 1rem;
}

.page-insight-detail .link-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-brand-deep);
  text-decoration: none;
}

.page-insight-detail .link-back::before {
  content: "←";
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero--detail {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .insight-article {
    padding: 2rem;
  }
}
