.occluded-content {
  display: block;
  position: relative;
  width: 100%;

  /* prevents margin overflow on item container */
  min-height: 0.01px;

  /* hides text visually while still being readable by screen readers */
  color: rgba(0,0,0,0);
}

table .occluded-content,
tbody .occluded-content,
thead .occluded-content,
tfoot .occluded-content {
  display: table-row;
  position: relative;
  width: 100%;
}

ul .occluded-content,
ol .occluded-content {
  display: list-item;
  position: relative;
  width: 100%;
  list-style-type: none;
  height: 0;
}
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.title-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.title-link:hover {
  color: var(--text-link);
}

.logo {
  height: 32px;
  width: auto;
  fill: currentcolor;
  flex-shrink: 0;
}

.external-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.external-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.external-link:hover {
  color: var(--text-link);
}

@media (width <= 768px) {
  .header-content {
    gap: 1rem;
  }

  .site-title {
    font-size: 1.25rem;
  }

  .title-link {
    gap: 0.4rem;
  }

  .logo {
    height: 28px;
  }

  .external-links {
    gap: 1rem;
  }

  .external-link {
    font-size: 0.85rem;
  }
}
.commit-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
  border-left: 4px solid var(--color-active-development);
}

.commit-card.expandable {
  cursor: pointer;
}

.commit-card.expandable:hover {
  box-shadow: var(--shadow-hover);
}

.commit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.commit-message {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: break-word;
  flex: 1;
  min-width: 0;
  font-weight: 500;
}

.commit-message .pr-link {
  color: var(--text-link);
  text-decoration: none;
  font-weight: 500;
}

.commit-message .pr-link:hover {
  text-decoration: underline;
}

.commit-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.commit-author {
  color: var(--text-muted);
}

.commit-meta-label {
  color: var(--text-muted);
}

.commit-version {
  color: var(--text-muted);
  font-family: "SF Mono", Monaco, Menlo, "Ubuntu Mono", monospace;
  font-size: 0.75rem;
}

.commit-date {
  color: var(--text-muted);
}

.commit-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.commit-sha {
  background: var(--bg-subtle);
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: "SF Mono", Monaco, Menlo, "Ubuntu Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.commit-sha:hover {
  background: oklch(from var(--color-active-development) l c h / 15%);
  border-color: var(--color-active-development);
  color: var(--color-active-development);
}

.commit-separator {
  color: var(--text-muted);
}

.commit-pr-link {
  color: var(--text-link);
  text-decoration: none;
  font-size: 0.8rem;
}

.commit-pr-link:hover {
  text-decoration: underline;
  color: var(--text-link-hover);
}

.commit-meta-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.commit-meta-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.commit-time {
  color: var(--text-muted);
}

.commit-time::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--text-muted);
}

/* Expandable commit body section */
.commit-details {
  margin-top: 0.5rem;
}

.commit-summary {
  display: none;
}

.commit-body {
  color: var(--text-primary);
}

.commit-full-body {
  padding: 1rem;
  background-color: var(--bg-code);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.commit-body-link {
  color: var(--text-link);
  text-decoration: underline;
  word-break: break-all;
}

.commit-body-link:hover {
  color: var(--text-link-hover);
}

/* Responsive design */
@media (width <= 768px) {
  .commit-card {
    padding: 0.875rem 1rem;
  }

  .commit-header {
    gap: 0.5rem;
  }

  .commit-tags {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
  }

  .commit-full-body {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}
.feature-card {
  background: var(--color-feature);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
}

.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.feature-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.feature-description {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 95%);
}

.feature-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-date {
  font-size: 0.8rem;
  color: rgb(255 255 255 / 80%);
}

.feature-version {
  opacity: 0.7;
  font-family: "SF Mono", Monaco, Menlo, "Ubuntu Mono", monospace;
  font-size: 0.75rem;
}

.feature-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  background: rgb(255 255 255 / 20%);
  border-radius: 4px;
  transition: background 0.2s;
}

.feature-link:hover {
  background: rgb(255 255 255 / 30%);
}

.feature-screenshot {
  width: 250px;
  flex-shrink: 0;
}

.feature-screenshot img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid rgb(255 255 255 / 30%);
}

/* Responsive design */
@media (width <= 768px) {
  .feature-card {
    flex-direction: column;
    padding: 1.25rem;
  }

  .feature-screenshot {
    width: 100%;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}
.security-advisory-card {
  background: linear-gradient(
    135deg,
    light-dark(#c0392b, #a32d23) 0%,
    light-dark(#a32d23, #8b251d) 100%
  );
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  color: white;
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s ease;
  text-decoration: none;
}

.security-advisory-card:hover {
  box-shadow: 0 4px 12px light-dark(rgb(0 0 0 / 25%), rgb(0 0 0 / 45%));
}

.advisory-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.advisory-content {
  flex: 1;
  min-width: 0;
}

.advisory-cve {
  display: inline-block;
  font-family: "SF Mono", Monaco, Menlo, "Ubuntu Mono", monospace;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgb(0 0 0 / 20%);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.advisory-summary {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 95%);
}

.advisory-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.advisory-date {
  font-size: 0.8rem;
  color: rgb(255 255 255 / 75%);
}

.advisory-link-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(255 255 255 / 90%);
}

/* Responsive design */
@media (width <= 768px) {
  .security-advisory-card {
    padding: 1rem;
  }

  .advisory-icon {
    display: none;
  }

  .advisory-summary {
    font-size: 0.9rem;
  }
}
.error-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.error-content {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
}

.error-title {
  font-size: 6rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-muted);
  line-height: 1;
}

.error-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--text-primary);
}

.error-message {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.error-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-active-development);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
}

.error-link:hover {
  background: oklch(from var(--color-active-development) calc(l * 0.9) c h);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

@media (width <= 768px) {
  .error-container {
    margin: 2rem auto;
  }

  .error-content {
    padding: 2rem 1.5rem;
  }

  .error-title {
    font-size: 4rem;
  }

  .error-subtitle {
    font-size: 1.5rem;
  }
}
.versions-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.header {
  margin-bottom: 2rem;
  text-align: left;
}

.header p {
  color: var(--text-secondary);
  font-size: 1.5rem;
}

.version-info {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.version-info p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.version-info p:last-child {
  margin-bottom: 0;
}

.loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
}

.versions-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.version-card {
  background: var(--bg-card);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  scroll-margin-top: 20px;
}

.version-card:hover {
  box-shadow: var(--shadow-hover);
}

.version-card:target {
  box-shadow: oklch(from var(--color-active-development) l c h / 30%) 0 4px 12px;
  transform: scale(1.01);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.version-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.version-link {
  color: var(--text-link);
  text-decoration: none;
}

.version-link:hover {
  text-decoration: underline;
}

.version-name {
  color: var(--text-primary);
}

.status-badge {
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.card-body {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.card-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.card-value {
  font-weight: 500;
  font-size: 0.9rem;
}

.card-value a {
  color: var(--text-link);
  text-decoration: none;
}

.card-value a:hover {
  text-decoration: underline;
}

.muted-text {
  color: var(--text-muted);
}

.patch-versions {
  border-top: 1px solid var(--border-subtle);
  padding: 0.5rem 1rem;
  background: var(--bg-subtle);
}

.patch-version-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}

.patch-version-link {
  color: var(--text-link);
  text-decoration: none;
  font-size: 0.9rem;
}

.patch-version-link:hover {
  text-decoration: underline;
}

.version-card.eol-version .card-header {
  background: oklch(from var(--color-end-of-life) l c h / 15%);
}

.version-card.eol-version {
  opacity: 0.8;
}

.version-card.active-version .card-header {
  background: oklch(from var(--color-supported) l c h / 20%);
}

.version-card.in-development-version .card-header {
  background: oklch(from var(--color-active-development) l c h / 20%);
}

.version-tag {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  background: var(--color-esr);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 3px;
  vertical-align: middle;
}

.esr-note {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: normal;
  margin-left: 0.25rem;
}

.support-status-active {
  background: var(--color-supported);
  color: white;
}

.support-status-end-of-life {
  background: var(--color-end-of-life);
  color: white;
}

.support-status-in-development {
  background: var(--color-active-development);
  color: white;
}

.relative-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.date-badge {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  background: var(--bg-subtle);
  color: var(--text-secondary);
  font-size: 0.75rem;
  border-radius: 3px;
  font-weight: normal;
}

.feedback-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-notice);
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.feedback-icon {
  font-size: 1.25rem;
}

.versions-container .feedback-banner a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.versions-container .feedback-banner a:hover {
  text-decoration-thickness: 2px;
}
.timeline-chart {
  --label-column-width: 80px;

  background: var(--bg-card);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.timeline-header {
  display: flex;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.timeline-row-label {
  width: var(--label-column-width);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-timeline {
  flex: 1;
  position: relative;
  height: 45px;
}

.timeline-month-marker {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transform: translateX(-50%);
  top: 0;
  text-align: center;
  line-height: 1.3;
}

.timeline-body {
  position: relative;
}

.timeline-rows-wrapper {
  position: relative;
}

.timeline-row {
  display: flex;
  margin-bottom: 0.5rem;
  align-items: center;
}

.timeline-row-timeline {
  flex: 1;
  position: relative;
  height: 32px;
  overflow: hidden;
}

.timeline-bar-link {
  position: absolute;
  inset: 0;
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
}

.timeline-bar {
  position: absolute;
  height: 100%;
  border-radius: 4px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.timeline-bar-link:hover .timeline-bar {
  opacity: 1;
}

.timeline-bar-development {
  border-radius: 4px 0 0 4px;
}

.timeline-bar-supported {
  border-radius: 0 4px 4px 0;
}

.timeline-bar-end-of-life {
  opacity: 0.5;
}

.timeline-grid-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}

.timeline-grid-spacer {
  width: var(--label-column-width);
  flex-shrink: 0;
}

.timeline-grid-timeline {
  flex: 1;
  position: relative;
}

.timeline-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-color);
  z-index: 0;
}

.timeline-today-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}

.timeline-today-spacer {
  width: var(--label-column-width);
  flex-shrink: 0;
}

.timeline-today-timeline {
  flex: 1;
  position: relative;
}

.timeline-today-indicator {
  position: absolute;
  top: -25px;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.timeline-today-label {
  background: var(--color-today);
  color: white;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.timeline-today-line {
  width: 2px;
  background: var(--color-today);
  flex: 1;
}

.version-label {
  color: var(--text-primary);
}

.timeline-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-status-in-development {
  background: var(--color-active-development);
}

.timeline-status-active {
  background: var(--color-supported);
}

.timeline-status-end-of-life {
  background: var(--color-end-of-life);
}

.timeline-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.timeline-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-legend-color {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  opacity: 0.9;
}

.timeline-legend-color-development {
  background: var(--color-active-development);
}

.timeline-legend-color-supported {
  background: var(--color-supported);
}

.timeline-legend-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}
