/* Release notes subpages (shared layout; content is per-locale HTML) */

body.release-notes-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.release-notes-page .hero-screen {
  flex-shrink: 0;
}

body.release-notes-page main.release-notes-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 0 0;
}

body.release-notes-page main.release-notes-main > .container {
  flex: 1 0 auto;
}

body.release-notes-page main.release-notes-main > .screen-band--footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}

.release-notes-hero--left.hero {
  padding: 32px 0 48px;
  font-family: "DM Sans", system-ui, sans-serif;
}

.release-notes-hero--left .release-notes-hero__copy {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.release-notes-hero--left .hero-kicker {
  margin: 0 0 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.release-notes-hero--left h1 {
  margin: 0 0 20px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 500;
  line-height: 1.3;
}

.release-notes-hero--left .lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.release-notes-inner.release-notes-inner--plain {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-bottom: 56px;
  font-family: "DM Sans", system-ui, sans-serif;
}

.release-notes-inner--plain .release-notes-section {
  padding: 0;
  margin: 0;
}

.release-notes-inner--plain .release-notes-section.release-notes-section--divider {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--stroke);
}

.release-notes-section__head {
  margin: 0 0 18px;
}

.release-notes-section__head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}

.release-notes-section__head p {
  margin: 8px 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
}

.release-notes-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.release-notes-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: none;
}

.release-notes-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1;
}

.release-notes-item--feature .release-notes-item__icon {
  background: #fbe9e9;
  color: var(--accent-soft);
}

.release-notes-item--fix .release-notes-item__icon {
  background: #f2f0ec;
  color: var(--text-secondary);
}

.release-notes-item__body {
  min-width: 0;
  padding-top: 1px;
}

.release-notes-item__label {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.release-notes-item__desc {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

.release-notes-item--fix .release-notes-item__desc {
  font-size: 0.875rem;
  line-height: 1.65;
}

.release-notes-history {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.release-notes-history__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.release-notes-history__row + .release-notes-history__row {
  border-top: 1px solid var(--stroke);
}

.release-notes-history__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.release-notes-history__ver {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.release-notes-history__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  /* Feature update */
  background: #e6f4ea;
  color: #1e6b3a;
}

.release-notes-history__tag--security {
  background: #fef3e2;
  color: #8a4b0f;
}

.release-notes-history__tag--enhancement {
  background: #f2f0ec;
  color: #5a564e;
}

.release-notes-history__tag--launch {
  background: #eef2fa;
  color: #1b3a6b;
}

.release-notes-history__date {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .release-notes-history__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
