body {
  background-color: #0e1118;
}
.hero--popkultura {
  background: radial-gradient(circle at top left, rgba(168, 85, 255, 0.18), transparent 55%), radial-gradient(circle at bottom right, rgba(34, 227, 197, 0.12), transparent 55%);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.hero-cta-row .btn {
  max-width: 100%;
}
.hero-media--primary {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.section--editorial-picks {
  background-color: #151925;
}
.section--authors {
  background-color: #1c2130;
}
.section--topics {
  background-color: #151925;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}
.section-header--center {
  align-items: center;
  text-align: center;
}
.section-header--split {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: var(--grid-gap-xl);
  align-items: flex-start;
}
.section-header--split .section-header-main {
  min-width: 0;
}
.section-header--split .section-header-aside {
  min-width: 0;
}
.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: var(--grid-gap-xl);
  align-items: stretch;
}
.editorial-media-figure {
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
}
.editorial-media-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-list-column {
  min-width: 0;
}
.editorial-card {
  height: 100%;
}
.author-grid {
  align-items: stretch;
}
.author-card {
  background: radial-gradient(circle at top left, rgba(34, 227, 197, 0.12), rgba(12, 15, 24, 0.98));
}
.author-card-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.author-media {
  max-height: 220px;
}
.author-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.author-name {
  font-size: var(--font-size-xl);
  margin: 0;
}
.author-link {
  border: none;
  padding: 0;
  background: none;
  color: var(--color-accent-teal);
  cursor: pointer;
  font: inherit;
}
.author-link:hover,
.author-link:focus-visible {
  color: var(--color-accent-uv);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.author-link--primary {
  font-weight: 600;
}
.author-role {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.author-bio {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.author-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.topics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: var(--grid-gap-xl);
  align-items: flex-start;
}
.topics-filter-panel {
  padding: var(--space-lg);
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border-subtle);
}
.topics-results-panel {
  min-width: 0;
}
.topics-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.topics-tag-cloud {
  margin-top: var(--space-sm);
}
.topics-results-header {
  margin-bottom: var(--space-md);
}
.topics-results-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--grid-gap-md);
}
.topics-legend {
  padding: var(--space-lg);
  border-radius: var(--radius-card);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.topics-legend-label {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.topics-legend-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.topics-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}
.topics-dot--uv {
  background: var(--color-accent-uv);
}
.topics-dot--teal {
  background: var(--color-accent-teal);
}
.tag--filter {
  position: relative;
  background-color: rgba(21, 25, 37, 0.9);
}
.tag--filter.is-active {
  border-color: var(--color-accent-teal);
  color: var(--color-accent-teal);
  background-color: rgba(34, 227, 197, 0.12);
}
.tag--filter.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(168, 85, 255, 0.6);
  pointer-events: none;
}
.author-link.is-highlighted {
  color: var(--color-accent-uv);
}
[data-article-hidden="true"] {
  display: none !important;
}
@media (max-width: 1023.98px) {
  .editorial-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .editorial-media-figure {
    min-height: 220px;
  }
  .section-header--split {
    grid-template-columns: minmax(0, 1fr);
  }
  .topics-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 767.98px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .editorial-media-figure {
    min-height: 200px;
  }
  .author-card-inner {
    flex-direction: column;
  }
  .topics-filter-panel {
    padding: var(--space-md);
  }
  .topics-legend {
    padding: var(--space-md);
  }
}
@media (max-width: 479.98px) {
  .topics-filter-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
