.buy-button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--q2-accent);
  color: var(--q2-accent-contrast);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
}
.buy-button:hover,
.buy-button:focus {
  filter: brightness(1.12);
  text-decoration: none;
  color: var(--q2-accent-contrast);
}
.buy-button:focus-visible {
  outline: 2px solid var(--q2-focus-ring);
  outline-offset: 2px;
}
 .langswitcher ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gallery {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.gallery img { width: 100%; height: auto; border-radius: 4px; display: block; 
}
.gallery,
.gallery li {
    list-style: none;
}
.gallery li::marker {
    content: none;
}
.cards {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.card a {
    display: block;
    height: 100%;
    padding: 1.25rem;
    border: 1px solid color-mix(in oklab, currentColor 20%, transparent);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
}
.card a:hover { border-color: var(--q2-accent); }
.card h3 { margin: 0 0 0.5rem; color: var(--q2-accent); }
.card p { margin: 0; font-size: 0.9rem; }

.sheets { list-style: none; padding: 0; }
.sheet { margin-bottom: 1.5rem; }
.sheet p { margin: 0.4rem 0 0; font-size: 0.9rem; }
.sheets,
.sheet {
    list-style: none;
}
.sheet::marker {
    content: none;
}
.article-list { list-style: none; padding: 0; }
.article-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid color-mix(in oklab, currentColor 15%, transparent);
}
.article-list time { opacity: 0.6; white-space: nowrap; }