@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --linux-glow: 0 0 0 1px rgba(45, 255, 135, 0.3), 0 14px 34px rgba(0, 0, 0, 0.32);
  --bg-gradient-a: #0f1620;
  --bg-gradient-b: #111822;
  --bg-gradient-c: #1b2e45;
  --spot-a: rgba(94, 243, 255, 0.18);
  --spot-b: rgba(149, 255, 79, 0.16);
  --text-color: #eef4ff;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-border: rgba(94, 243, 255, 0.28);
  --link-color: #2dff87;
  --hero-radius: 24px;
}

html[data-theme="light"] {
  --bg-gradient-a: #f5f9ff;
  --bg-gradient-b: #eaf2ff;
  --bg-gradient-c: #dce9ff;
  --spot-a: rgba(94, 243, 255, 0.14);
  --spot-b: rgba(60, 128, 255, 0.14);
  --text-color: #0e1a2d;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-border: rgba(31, 43, 61, 0.2);
  --link-color: #1164e8;
  --linux-glow: 0 0 0 1px rgba(17, 100, 232, 0.2), 0 16px 34px rgba(7, 23, 43, 0.12);
}

html[data-font-size="small"] {
  font-size: 93.75%;
}

html[data-font-size="normal"] {
  font-size: 100%;
}

html[data-font-size="large"] {
  font-size: 112.5%;
}

html[data-contrast="high"] {
  --surface: rgba(0, 0, 0, 0.55);
  --surface-border: rgba(255, 255, 255, 0.75);
  --text-color: #ffffff;
  --link-color: #7fffe0;
}

html[data-theme="light"][data-contrast="high"] {
  --surface: rgba(255, 255, 255, 0.96);
  --surface-border: rgba(0, 0, 0, 0.65);
  --text-color: #000000;
  --link-color: #003ea3;
}

body {
  color: var(--text-color);
  background-color: var(--bg-gradient-b);
  background-image: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

a {
  color: var(--link-color);
}

.wp-site-blocks {
  color: var(--text-color);
}

header.wp-block-template-part {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

header.wp-block-template-part {
  background: rgba(15, 22, 32, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(94, 243, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

html[data-theme="light"] header.wp-block-template-part {
  background: rgba(245, 249, 255, 0.7);
  border-bottom-color: rgba(31, 43, 61, 0.08);
}

html[data-theme="light"] header.wp-block-template-part .wp-block-site-title a {
  color: #0e1a2d;
}

html[data-theme="light"] header.wp-block-template-part .wp-block-navigation-item__content {
  color: #0e1a2d !important;
}

@media (max-width: 781px) {
  header.wp-block-template-part {
    position: static !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }
}

.linux-brand-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.linux-brand-mark svg {
  width: 100%;
  height: 100%;
}

.linux-brand-mark rect {
  fill: rgba(17, 24, 34, 0.9);
  stroke: rgba(94, 243, 255, 0.8);
  stroke-width: 2;
}

.linux-brand-mark path {
  stroke: rgba(238, 244, 255, 0.95);
  stroke-width: 3;
  stroke-linecap: round;
}

.linux-brand-mark circle {
  fill: rgba(45, 255, 135, 0.95);
}

.linux-brand-mark--small {
  width: 36px;
  height: 36px;
}

html[data-theme="light"] .linux-brand-mark rect {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(17, 100, 232, 0.68);
}

html[data-theme="light"] .linux-brand-mark path {
  stroke: rgba(14, 26, 45, 0.9);
}

.linux-hero {
  position: relative;
  border-radius: var(--hero-radius);
  backdrop-filter: blur(7px);
  box-shadow: var(--linux-glow);
  color: #eef4ff;
}

.linux-hero h1,
.linux-hero h2,
.linux-hero h3,
.linux-hero p {
  color: #eef4ff;
}

html[data-theme="light"] .linux-hero {
  color: #f8fbff;
}

html[data-theme="light"] .linux-hero h1,
html[data-theme="light"] .linux-hero h2,
html[data-theme="light"] .linux-hero h3,
html[data-theme="light"] .linux-hero p {
  color: #f8fbff;
}

.linux-hero-image img {
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.linux-a11y-widget {
  position: relative;
}

.linux-a11y-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text-color);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.linux-a11y-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--link-color);
}

.linux-a11y-toggle:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
}

.linux-a11y-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  width: min(320px, 88vw);
  padding: 0.85rem;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: rgba(10, 16, 26, 0.96);
  box-shadow: var(--linux-glow);
  z-index: 80;
}

html[data-theme="light"] .linux-a11y-panel {
  background: rgba(255, 255, 255, 0.96);
}

.linux-a11y-section + .linux-a11y-section {
  margin-top: 0.8rem;
}

.linux-a11y-title {
  margin: 0 0 0.45rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
}

.linux-a11y-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.linux-a11y-options button {
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-color);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.82rem;
  padding: 0.38rem 0.68rem;
  cursor: pointer;
}

html[data-theme="light"] .linux-a11y-options button {
  background: rgba(0, 0, 0, 0.04);
}

.linux-a11y-options button.is-active {
  border-color: var(--link-color);
  background: rgba(45, 255, 135, 0.15);
}

.linux-a11y-options button:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
}

.wp-block-navigation__responsive-container.is-menu-open {
  background: rgba(10, 16, 26, 0.98) !important;
  backdrop-filter: blur(8px);
  color: #eef4ff;
}

html[data-theme="light"] .wp-block-navigation__responsive-container.is-menu-open {
  background: rgba(255, 255, 255, 0.98) !important;
  color: #0e1a2d;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding: 1.25rem;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0;
  color: inherit;
}

html[data-theme="dark"] .wp-block-navigation__responsive-container.is-menu-open,
html:not([data-theme]) .wp-block-navigation__responsive-container.is-menu-open {
  color: #eef4ff;
}

html[data-theme="dark"] .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content,
html[data-theme="dark"] .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:visited,
html:not([data-theme]) .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content,
html:not([data-theme]) .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:visited {
  color: #eef4ff !important;
}

html[data-theme="dark"] .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle,
html:not([data-theme]) .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle {
  color: #eef4ff !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus {
  color: var(--link-color);
}

.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  color: var(--wp--preset--color--cloud, #eef4ff);
}

html[data-theme="light"] .wp-block-navigation__responsive-container-open,
html[data-theme="light"] .wp-block-navigation__responsive-container-close {
  color: #0e1a2d;
}

.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
  fill: currentColor;
  stroke: currentColor;
}

.linux-back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--linux-glow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 50;
}

.linux-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.linux-back-to-top:hover {
  border-color: var(--link-color);
}

.linux-back-to-top:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
}

.linux-contact-form {
  margin-top: 0.8rem;
  padding: 1.2rem;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--linux-glow);
}

.linux-contact-form p {
  margin: 0 0 0.9rem;
}

.linux-contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.linux-contact-form input[type="text"],
.linux-contact-form input[type="email"],
.linux-contact-form textarea {
  width: 100%;
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 0.72rem 0.82rem;
  background: rgba(11, 18, 28, 0.45);
  color: var(--text-color);
  font: inherit;
}

html[data-theme="light"] .linux-contact-form input[type="text"],
html[data-theme="light"] .linux-contact-form input[type="email"],
html[data-theme="light"] .linux-contact-form textarea {
  background: rgba(255, 255, 255, 0.82);
}

.linux-contact-form input[type="text"]:focus,
.linux-contact-form input[type="email"]:focus,
.linux-contact-form textarea:focus {
  outline: 2px solid var(--link-color);
  outline-offset: 1px;
  border-color: var(--link-color);
}

.linux-contact-form input[type="submit"] {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  background: var(--link-color);
  color: #0f1620;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.linux-contact-form .wpcf7-not-valid-tip {
  font-size: 0.83rem;
}

.linux-contact-form .wpcf7-response-output {
  margin: 0.6rem 0 0;
  border-radius: 10px;
}

.linux-video-section .wp-block-columns + .wp-block-columns {
  margin-top: 0.5rem;
}

.linux-video-card,
.linux-video-channel-card {
  padding: 0.95rem;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: var(--surface);
}

.linux-tool-card {
  padding: 0.95rem;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: var(--surface);
}

.linux-video-card .wp-block-embed,
.linux-video-card figure {
  margin-top: 0;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  overflow: hidden;
}

.linux-video-placeholder,
.linux-video-thumb {
  min-height: 180px;
  margin-bottom: 0.7rem;
  border: 1px dashed var(--surface-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.linux-video-thumb {
  border-style: solid;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 255, 135, 0.14), rgba(94, 243, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.linux-video-thumb-link {
  min-height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text-color);
  cursor: pointer;
}

.linux-video-play {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
  background: rgba(0, 0, 0, 0.32);
  color: #eef4ff;
  font-size: 1rem;
  line-height: 1;
}

.linux-video-thumb-link:hover .linux-video-play {
  border-color: var(--link-color);
  transform: scale(1.06);
}

.linux-video-thumb-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
}

.linux-video-grid {
  gap: 1.5rem;
}

.linux-video-grid > .wp-block-column {
  display: flex;
}

.linux-video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.linux-video-card p {
  flex: 1 1 auto;
}

.linux-video-card .wp-block-buttons {
  margin-top: auto;
}

html[data-theme="light"] .linux-video-placeholder,
html[data-theme="light"] .linux-video-thumb {
  background: rgba(255, 255, 255, 0.55);
}

.linux-video-card h4,
.linux-tool-card h4 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.linux-tool-card {
  display: flex;
  flex-direction: column;
}

.linux-tool-card ul,
.linux-tool-card p {
  flex: 1;
}

.linux-tool-card .wp-block-buttons {
  margin-top: auto;
}

.linux-compare-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.linux-compare-table th,
.linux-compare-table td {
  border-bottom: 1px solid var(--surface-border);
  padding: 0.65rem 0.7rem;
  text-align: left;
}

.linux-compare-table tr:last-child td {
  border-bottom: 0;
}

.linux-about-card,
.linux-about-note {
  padding: 1.2rem;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--linux-glow);
}

.linux-about-placeholder {
  min-height: 320px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(45, 255, 135, 0.14), rgba(94, 243, 255, 0.08)),
    var(--surface);
  box-shadow: var(--linux-glow);
}

.linux-home-posts-query .wp-block-post {
  display: flex;
}

.linux-feature-card {
  height: 100%;
  padding: 1.4rem 1.1rem;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--linux-glow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.linux-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--link-color);
}

.linux-feature-card p {
  flex: 1;
}

.linux-feature-card .wp-block-buttons {
  margin-top: auto;
}

.linux-feature-card .wp-block-heading {
  margin-top: 0;
}

.linux-home-post-card {
  height: 100%;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--linux-glow);
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.linux-home-post-card:hover {
  transform: translateY(-3px);
  border-color: var(--link-color);
}

.linux-home-post-card .wp-block-post-featured-image {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.linux-home-post-card .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.linux-home-post-card .wp-block-post-date {
  margin: 0;
  opacity: 0.88;
}

.linux-home-post-card .wp-block-post-title {
  margin: 0;
  line-height: 1.2;
}

.linux-home-post-card .wp-block-post-title a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.linux-home-post-card .wp-block-post-excerpt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.linux-home-post-card .wp-block-post-excerpt p {
  margin: 0;
}

.linux-home-post-card .wp-block-post-excerpt__excerpt {
  margin: 0;
}

.linux-home-post-card .wp-block-post-excerpt__more-text {
  margin-top: auto;
}

.linux-home-post-card .wp-block-post-excerpt__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 2.75rem;
  padding: 0.45rem 1.6rem;
  border: 2px solid rgba(238, 244, 255, 0.82);
  border-radius: 999px;
  background: transparent;
  color: var(--wp--preset--color--cloud);
  font-family: var(--wp--preset--font-family--space-grotesk);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.linux-home-post-card .wp-block-post-excerpt__more-link:hover {
  background: var(--wp--preset--color--cloud);
  border-color: var(--wp--preset--color--cloud);
  color: var(--wp--preset--color--obsidian);
}

.linux-home-post-card .wp-block-post-excerpt__more-link:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 2px;
}

html[data-theme="light"] .linux-home-post-card .wp-block-post-excerpt__more-link {
  border-color: rgba(17, 26, 45, 0.65);
  color: #0e1a2d;
}

html[data-theme="light"] .linux-home-post-card .wp-block-post-excerpt__more-link:hover {
  background: #0e1a2d;
  border-color: #0e1a2d;
  color: #fff;
}

.linux-software-grid > .wp-block-column {
  display: flex;
}

.linux-software-card {
  height: 100%;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--linux-glow);
  display: flex;
  flex-direction: column;
}

.linux-software-card figure {
  margin: 0 0 0.9rem;
  overflow: hidden;
  border-radius: 12px;
}

.linux-software-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.linux-software-card:hover img {
  transform: scale(1.03);
}

.linux-software-card h3 {
  margin-top: 0;
}

.linux-software-card p {
  flex: 1;
}

.linux-software-card .wp-block-buttons {
  margin-top: auto;
}

.linux-software-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.linux-software-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.2;
}

.linux-software-badge--internet {
  color: #aee5ff;
  border-color: rgba(94, 243, 255, 0.55);
  background: rgba(94, 243, 255, 0.14);
}

.linux-software-badge--media {
  color: #ffe0ae;
  border-color: rgba(255, 167, 51, 0.55);
  background: rgba(255, 167, 51, 0.14);
}

.linux-software-badge--productiviteit {
  color: #c8ffd9;
  border-color: rgba(45, 255, 135, 0.55);
  background: rgba(45, 255, 135, 0.14);
}

.linux-software-badge--ontwikkeling {
  color: #d7d1ff;
  border-color: rgba(163, 137, 255, 0.55);
  background: rgba(163, 137, 255, 0.14);
}

html[data-theme="light"] .linux-software-badge--internet {
  color: #0b4873;
  background: rgba(94, 243, 255, 0.24);
}

html[data-theme="light"] .linux-software-badge--media {
  color: #8b4f00;
  background: rgba(255, 167, 51, 0.24);
}

html[data-theme="light"] .linux-software-badge--productiviteit {
  color: #0a6643;
  background: rgba(45, 255, 135, 0.24);
}

html[data-theme="light"] .linux-software-badge--ontwikkeling {
  color: #4c3c92;
  background: rgba(163, 137, 255, 0.2);
}

.linux-software-single .wp-block-post-featured-image img,
.linux-post-single .wp-block-post-featured-image img {
  box-shadow: var(--linux-glow);
}

html[data-theme="light"] .linux-about-placeholder {
  background:
    linear-gradient(135deg, rgba(17, 100, 232, 0.10), rgba(45, 255, 135, 0.10)),
    rgba(255, 255, 255, 0.72);
}

@media (max-width: 781px) {
  body {
    background-attachment: scroll;
  }

  .linux-hero {
    border-radius: 18px;
  }

  .linux-a11y-toggle {
    margin-top: 0.25rem;
  }

  .linux-a11y-panel {
    right: auto;
    left: 0;
  }

  .wp-block-navigation__responsive-container.is-menu-open {
    border-left: 1px solid rgba(94, 243, 255, 0.22);
  }
}

.linux-distribution-single .wp-block-post-featured-image {
  display: flex;
  justify-content: center;
}

.linux-distribution-single .wp-block-post-featured-image img {
  width: auto;
  max-width: 160px;
  max-height: 100px;
  object-fit: contain;
  box-shadow: var(--linux-glow);
  border-radius: 12px;
}

.linux-distro-meta-header {
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: var(--surface);
}

.linux-distro-badges {
  display: flex;
  gap: 0.5rem;
}

.linux-distro-separator {
  margin: 0.75rem 0 0;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--surface-border), transparent);
}

.linux-distro-difficulty {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.linux-distro-difficulty.beginner {
  background: var(--wp--preset--color--terminal-green);
  color: var(--wp--preset--color--obsidian);
}

.linux-distro-difficulty.intermediate {
  background: #f59e0b;
  color: #111822;
}

.linux-distro-difficulty.advanced {
  background: #ef4444;
  color: #fff;
}

.linux-distro-audience {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--wp--preset--color--ink);
  color: var(--wp--preset--color--cloud);
  border: 1px solid var(--surface-border);
}

.linux-distro-pros,
.linux-distro-cons {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  background: var(--surface);
}

.linux-distro-pros h3,
.linux-distro-cons h3 {
  margin: 0 0 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.linux-distro-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pros-icon {
  background: rgba(45, 255, 135, 0.18);
  color: var(--wp--preset--color--terminal-green);
}

.cons-icon {
  background: rgba(239, 68, 68, 0.18);
  color: #ef4444;
}

.linux-distro-pros ul,
.linux-distro-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.linux-distro-pros ul li,
.linux-distro-cons ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.linux-distro-pros ul li:last-child,
.linux-distro-cons ul li:last-child {
  border-bottom: none;
}

.linux-distro-pros ul li::before {
  content: "• ";
  color: var(--wp--preset--color--terminal-green);
  font-weight: 700;
}

.linux-distro-cons ul li::before {
  content: "• ";
  color: #ef4444;
  font-weight: 700;
}

html[data-theme="light"] .linux-distro-pros ul li,
html[data-theme="light"] .linux-distro-cons ul li {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.linux-compare-table td a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.linux-compare-table td a:hover {
  color: var(--wp--preset--color--lime-circuit);
}
