/* Blog — borderless, matches legal-page language */

.blog-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 72px;
  color: var(--text);
}

.blog-header {
  margin-bottom: 28px;
}

.blog-kicker {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.blog-header h1 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.blog-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.55;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.blog-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta__item i,
.blog-meta__item svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.75;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-card {
  display: grid;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.2s ease;
}

.blog-card:hover {
  opacity: 0.88;
}

.blog-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  border: none;
  display: block;
}

.blog-card__body h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.blog-card__body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-empty {
  color: var(--text-secondary);
}

.blog-breadcrumb {
  margin-bottom: 22px;
}

.blog-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
}

.blog-breadcrumb a:hover {
  color: var(--text);
}

.blog-breadcrumb svg {
  width: 16px;
  height: 16px;
}

.blog-cover {
  margin: 0 0 28px;
}

.blog-cover img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
}

.blog-article .blog-body.legal-page-container {
  max-width: none;
  padding: 0;
  margin: 0;
}

.blog-body img {
  max-width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  margin: 18px 0;
}

.blog-body figure {
  margin: 20px 0;
}

.blog-body figcaption {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.blog-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.blog-body th,
.blog-body td {
  padding: 8px 0;
  text-align: left;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.blog-related {
  margin-top: 48px;
  padding-top: 8px;
}

.blog-related h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 600;
}

.blog-related__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-related__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  border: none;
  background: transparent;
}

.blog-related__item:hover {
  opacity: 0.85;
}

.blog-related__item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .blog-page {
    padding: 4px 0 56px;
  }

  .blog-card__body h2 {
    font-size: 1.2rem;
  }
}
