/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\tokens.css */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/css/inter-latin-NRMW37G5.woff2") format("woff2");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/css/merriweather-latin-UQBWMYSV.woff2") format("woff2");
}
:root {
  --color-bg: #f8f8f5;
  --color-text: #1f2933;
  --color-accent: #3f6ebc;
  --color-highlight: #b68b3a;
  --color-line: #d9d9d9;
  --color-success: #3f8f5c;
  --color-muted: #6b7280;
  --font-body:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-heading:
    "Merriweather",
    Georgia,
    "Times New Roman",
    serif;
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\header.css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 2px 8px rgba(31, 41, 51, 0.06);
  margin: 0 -1.5rem 1rem -1.5rem;
  padding: 0.75rem 1.5rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
}
.site-header__logo {
  display: block;
  height: auto;
  max-height: 64px;
  width: auto;
}
.site-header__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-text);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.lang-switch {
  display: flex;
  gap: 0.4rem;
  font-size: 0.85em;
}
.lang-switch a,
.lang-switch__current {
  color: var(--color-muted);
}
.lang-switch__current {
  font-weight: bold;
  color: var(--color-text);
}
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  cursor: pointer;
}
.nav-toggle-label span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}
header nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav li {
  position: relative;
}
header nav a {
  color: var(--color-text);
}
header nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.12);
}
header nav li:hover > ul,
header nav li:focus-within > ul {
  display: flex;
}
header nav ul ul li {
  width: 100%;
}
header nav ul ul a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9em;
  white-space: nowrap;
}
header nav ul ul a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}
header nav a.active {
  font-weight: bold;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.25rem;
}
.search-toggle:hover {
  color: var(--color-accent);
}
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10vh;
  background: rgba(31, 41, 51, 0.4);
}
.search-overlay[hidden] {
  display: none;
}
.search-panel {
  display: flex;
  flex-direction: column;
  width: min(600px, 90vw);
  max-height: 70vh;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.2);
  overflow: hidden;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-muted);
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: none;
}
.search-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-muted);
}
.search-results {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  overflow-y: auto;
}
.search-results li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem 1rem;
  color: var(--color-text);
}
.search-results li a:hover {
  background: var(--color-bg);
}
.search-result__summary {
  font-size: 0.85em;
  color: var(--color-muted);
}
.search-results__empty {
  padding: 0.75rem 1rem;
  color: var(--color-muted);
  font-size: 0.9em;
}
@media (max-width: 640px) {
  .site-header {
    margin: 0 -1.5rem 1rem -1.5rem;
  }
  .nav-toggle-label {
    display: flex;
  }
  .site-header__nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .nav-toggle:checked ~ .site-header__nav {
    display: block;
  }
  header nav > ul {
    flex-direction: column;
    gap: 0.6rem;
  }
  header nav ul ul {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.3rem 0 0 0;
    padding: 0 0 0 1rem;
    min-width: 0;
    background: none;
    border: none;
    box-shadow: none;
  }
  header nav ul ul a {
    padding: 0;
    font-size: 0.85em;
    opacity: 0.8;
  }
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\breadcrumbs.css */
.breadcrumbs {
  font-size: 0.85em;
  color: var(--color-muted);
  margin: 0.75rem 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: "\203a";
  margin: 0 0.5em;
  color: var(--color-line);
}
.breadcrumbs a {
  color: var(--color-muted);
}
.breadcrumbs a:hover {
  color: var(--color-accent);
}
.breadcrumbs li[aria-current=page] {
  color: var(--color-text);
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\footer.css */
footer {
  background: var(--color-text);
  color: var(--color-bg);
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
}
footer a {
  color: var(--color-bg);
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\project-card.css */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s;
}
.project-card[hidden] {
  display: none;
}
.project-card:hover {
  transform: scale(1.02);
}
.project-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-line);
  overflow: hidden;
}
.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}
.project-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-muted);
  font-size: 0.85em;
}
.project-card__body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-card__title {
  margin: 0;
  font-size: 1.1em;
}
.project-card__title a {
  color: var(--color-text);
}
.project-card__meta {
  font-size: 0.85em;
  color: var(--color-muted);
}
.project-card__summary {
  font-size: 0.9em;
  color: var(--color-text);
  margin: 0;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  padding-top: 6px;
}
.badge {
  position: absolute;
  top: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75em;
  font-weight: 600;
  color: #fff;
}
.badge--status {
  right: 8px;
  background: var(--color-muted);
}
.badge--inline {
  position: static;
  display: inline-block;
}
.badge--fertig {
  background: var(--color-success);
}
.badge--in-arbeit {
  background: var(--color-highlight);
}
.badge--pausiert {
  background: var(--color-muted);
}
.badge--featured {
  left: 8px;
  background: var(--color-accent);
}
.tag {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  color: var(--color-text);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.75em;
}
.project-hero {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}
.project-meta a {
  color: var(--color-accent);
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\home.css */
.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--color-line);
}
.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background:
    linear-gradient(
      to top,
      rgba(31, 41, 51, 0.92),
      rgba(31, 41, 51, 0.5) 65%,
      rgba(31, 41, 51, 0));
  color: #fff;
}
.home-hero__title {
  margin: 0 0 0.4rem 0;
  font-size: 2rem;
  color: #fff;
}
.home-hero__meta {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.home-hero__summary {
  max-width: 640px;
  margin: 0 0 1.2rem 0;
  line-height: 1.5;
}
.button {
  display: inline-block;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.button--primary {
  background: var(--color-accent);
  color: #fff;
}
.button--primary:hover {
  background: var(--color-highlight);
}
.home-latest__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.home-latest__header h2 {
  margin: 0;
}
.home-latest__all-link {
  font-size: 0.9rem;
  white-space: nowrap;
}
.home-latest__all-link:hover {
  color: var(--color-highlight);
}
.gallery-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.gallery-highlight {
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
}
.gallery-highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 0.2s;
}
.gallery-highlight:hover img {
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .gallery-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-hero {
    min-height: 280px;
  }
  .home-hero__title {
    font-size: 1.5rem;
  }
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\gallery.css */
.project-gallery {
  margin-top: 2rem;
}
.gallery-phase {
  margin-bottom: 2rem;
}
.gallery-phase h3 {
  margin-bottom: 0.75rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.gallery-item {
  display: block;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 51, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 100;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox__caption {
  color: #fff;
  margin-top: 0.75rem;
  text-align: center;
  max-width: 640px;
}
.gallery-masonry {
  column-count: 3;
  column-gap: 14px;
  margin-top: 1.5rem;
}
.gallery-masonry .gallery-item {
  aspect-ratio: auto;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 14px;
}
.gallery-masonry .gallery-item img {
  height: auto;
  object-fit: initial;
}
@media (max-width: 900px) {
  .gallery-masonry {
    column-count: 2;
  }
}
@media (max-width: 560px) {
  .gallery-masonry {
    column-count: 1;
  }
}
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 1rem 0 1.5rem;
}
.tag--filter {
  cursor: pointer;
  font-family: inherit;
}
.tag--filter.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__close {
  top: 1rem;
  right: 1.5rem;
}
.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\timeline.css */
.timeline {
  margin-top: 2rem;
  padding-left: 2rem;
  border-left: 3px solid var(--color-line);
}
.timeline-year {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-year:last-child {
  margin-bottom: 0;
}
.timeline-year__marker {
  position: relative;
  margin-left: -2.9rem;
  margin-bottom: 0.75rem;
  padding-left: 1.4rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-accent);
}
.timeline-year__marker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
}
.timeline-year__entries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.timeline-entry {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s;
}
.timeline-entry:hover {
  transform: translateY(-2px);
}
.timeline-entry__image,
.timeline-entry__placeholder {
  width: 110px;
  height: 90px;
  flex-shrink: 0;
  object-fit: cover;
}
.timeline-entry__placeholder {
  background: var(--color-line);
}
.timeline-entry__body {
  padding: 10px 12px 10px 0;
  min-width: 0;
}
.timeline-entry__title {
  margin: 0 0 4px 0;
  font-size: 1rem;
}
.timeline-entry__summary {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 480px) {
  .timeline {
    padding-left: 1.2rem;
  }
  .timeline-year__marker {
    margin-left: -1.9rem;
  }
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\ijn-fleet.css */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.ref-card {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.15s;
}
.ref-card:hover {
  transform: translateY(-2px);
}
.ref-card__title {
  margin: 0 0 4px 0;
  font-size: 1.05em;
}
.ref-card__japanese {
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 0.9em;
  color: var(--color-muted);
  margin-left: 0.4em;
}
.ref-card__summary {
  margin: 0;
  font-size: 0.85em;
  color: var(--color-muted);
}
.ref-builds {
  margin-top: 2rem;
}
.ref-builds__list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ref-builds__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

/* ns-hugo-imp:D:\DevLocal\mymodelspace\website\themes\workbench\assets\css\components\events.css */
.badge--event-type {
  left: 8px;
  background: var(--color-accent);
}
.event-card__actions {
  margin-top: auto;
  padding-top: 8px;
}
.event-hero {
  margin-bottom: 1.5rem;
}
.event-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px 20px;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
}
.event-info__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-info__label {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-muted);
}
.event-info__value {
  font-size: 0.95em;
}
.event-about,
.event-highlights-section,
.event-models,
.event-all-photos {
  margin-bottom: 2.5rem;
}
.event-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
  margin-top: 1rem;
}
.event-highlights .gallery-item {
  aspect-ratio: auto;
  height: 100%;
}
.event-highlights .gallery-item:nth-child(6n+1),
.event-highlights .gallery-item:nth-child(6n+4) {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 900px) {
  .event-highlights {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}
@media (max-width: 560px) {
  .event-highlights {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .event-highlights .gallery-item,
  .event-highlights .gallery-item:nth-child(6n+1),
  .event-highlights .gallery-item:nth-child(6n+4) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
    height: auto;
  }
}
.event-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 1rem;
}
.event-model-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  overflow: hidden;
}
.event-model-card__image-wrap {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--color-line);
  overflow: hidden;
}
.event-model-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-model-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 4 / 3;
  color: var(--color-muted);
  font-size: 0.8em;
  text-align: center;
  padding: 0 8px;
}
.event-model-card__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-model-card__title {
  margin: 0;
  font-size: 0.95em;
}
.event-model-card__meta {
  font-size: 0.8em;
  color: var(--color-muted);
}
.event-model-card__link {
  margin-top: 4px;
  font-size: 0.85em;
  color: var(--color-accent);
}
.event-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
  font-size: 0.9em;
}
.event-pager__link {
  display: flex;
  flex-direction: column;
  max-width: 40%;
}
.event-pager__link--next {
  text-align: right;
  margin-left: auto;
}
.event-pager__hint {
  font-size: 0.8em;
  color: var(--color-muted);
}
@media (max-width: 640px) {
  .event-pager {
    flex-wrap: wrap;
  }
  .event-pager__link {
    max-width: 100%;
  }
}

/* <stdin> */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}
a {
  color: var(--color-accent);
  text-decoration: none;
}
article img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
}
.image-row img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
}
.image-row .gallery-item {
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  display: block;
}
.image-row .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: initial;
  margin: 0;
  border-radius: 8px;
  display: block;
}
article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95em;
}
article th,
article td {
  text-align: left;
  padding: 8px 12px;
  border: 1px solid var(--color-line);
}
article th {
  background: var(--color-bg);
  font-family: var(--font-heading);
}
article tbody tr:nth-child(even) {
  background: var(--color-bg);
}
article a[href^=http]::after {
  content: "\2197";
  display: inline-block;
  margin-left: 0.2em;
  font-size: 0.85em;
  color: var(--color-accent);
}
/*# sourceMappingURL=main.css.map */
