/*
Theme Name: Simpleton Radio
Theme URI: https://radio.bloks.net/
Description: Radio-focused child theme for the Simpleton framework and BLOKS Radio.
Version: 0.3.12
Author: BLOKS
Author URI: https://bloks.net/
Template: simpleton
Text Domain: simpleton-radio
*/

/* =========================================
   DESIGN TOKENS
========================================= */

:root {
  --bloks-bg: #050816;
  --bloks-surface: #0F172A;
  --bloks-primary: #2F52FF;
  --bloks-primary-light: #4A7DFF;
  --bloks-accent: #38BDF8;
  --bloks-text: #F8FAFC;
  --bloks-text-soft: #CBD5E1;
  --bloks-text-muted: #94A3B8;

  --bloks-radius-sm: 12px;
  --bloks-radius-md: 18px;
  --bloks-radius-lg: 24px;

  --bloks-speed: .22s ease;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.bloks-h1,
.bloks-h2,
.bloks-h3,
.bloks-card-content h3 {
  margin: 0;
  color: var(--bloks-text);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.bloks-h1 {
  font-size: clamp(52px, 8vw, 96px);
}

.bloks-h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.bloks-h3,
.bloks-card-content h3 {
  font-size: clamp(30px, 3vw, 42px);
}

.bloks-body,
.bloks-card-content p {
  color: var(--bloks-text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.bloks-caption {
  color: var(--bloks-text-muted);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bloks-section-title {
  margin-bottom: 18px;
}

.bloks-readable {
  max-width: 72ch;
}

/* =========================================
   BUTTONS
========================================= */

.bloks-btn,
.bloks-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 9px 18px;

  border-radius: 999px;

  font-weight: 700;
  font-size: 15px;
  line-height: 1;

  text-decoration: none;

  transition:
    color var(--bloks-speed),
    background var(--bloks-speed),
    border-color var(--bloks-speed),
    box-shadow var(--bloks-speed),
    transform var(--bloks-speed);
}

.bloks-btn-primary,
.bloks-card-link {
  color: var(--bloks-text);

  background:
    linear-gradient(
      135deg,
      rgba(47,82,255,.92),
      rgba(56,189,248,.72)
    );

  border: 1px solid rgba(56,189,248,.55);

  box-shadow:
    0 0 18px rgba(47,82,255,.22),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.bloks-btn-primary:hover,
.bloks-card-link:hover {
  color: #fff;

  transform: translateY(-1px);

  border-color: rgba(56,189,248,.85);

  box-shadow:
    0 0 26px rgba(56,189,248,.32),
    0 10px 26px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.bloks-btn-ghost {
  color: var(--bloks-text-soft);

  background: rgba(15,23,42,.5);

  border: 1px solid rgba(148,163,184,.22);
}

.bloks-btn-ghost:hover {
  color: var(--bloks-text);

  background: rgba(47,82,255,.16);

  border-color: rgba(74,125,255,.42);
}

/* =========================================
   CARDS
========================================= */

.bloks-card {
  position: relative;

  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: 24px;

  min-height: 320px;

  padding: 28px;

  border: 2px solid rgba(74,125,255,.65);
  border-radius: var(--bloks-radius-md);

  background:
    linear-gradient(
      180deg,
      rgba(10,18,40,.96),
      rgba(5,8,22,.985)
    );

  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    0 0 28px rgba(47,82,255,.16);

  overflow: hidden;

  transition:
    transform var(--bloks-speed),
    border-color var(--bloks-speed),
    box-shadow var(--bloks-speed);
}

.bloks-card:hover {
  transform: translateY(-4px);

  border-color: rgba(56,189,248,.9);

  box-shadow:
    0 30px 75px rgba(0,0,0,.65),
    0 0 44px rgba(47,82,255,.28);
}

.bloks-card-media img {
  width: 100%;
  max-width: 220px;

  display: block;

  margin: 0 auto;

  filter:
    drop-shadow(0 18px 26px rgba(0,0,0,.28))
    drop-shadow(0 0 20px rgba(47,82,255,.18));

  transition:
    transform .25s ease,
    filter .25s ease;
}

.bloks-card:hover .bloks-card-media img {
  transform: scale(1.035);

  filter:
    drop-shadow(0 22px 34px rgba(0,0,0,.34))
    drop-shadow(0 0 28px rgba(56,189,248,.24));
}

.bloks-card-content p {
  margin: 14px 0 18px;
}

.bloks-card::after {
  content: "";

  position: absolute;

  top: -120%;
  left: -40%;

  width: 80%;
  height: 300%;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.045) 48%,
      rgba(255,255,255,.08) 50%,
      rgba(255,255,255,.045) 52%,
      rgba(255,255,255,0) 100%
    );

  transform: rotate(18deg);

  opacity: 0;

  transition:
    opacity .25s ease,
    transform .8s ease;

  pointer-events: none;
}

.bloks-card:hover::after {
  opacity: 1;
  transform: rotate(18deg) translateX(140%);
}

.bloks-card-icon {
  width: 46px;
  height: 46px;

  object-fit: contain;

  margin: 0 0 16px;

  filter:
    drop-shadow(0 0 14px rgba(56,189,248,.35));

  transition:
    transform var(--bloks-speed),
    filter var(--bloks-speed);
}

.bloks-card:hover .bloks-card-icon {
  transform: translateY(-2px) scale(1.05);

  filter:
    drop-shadow(0 0 20px rgba(56,189,248,.55));
}

/* =========================================
   SECTIONS / CONTAINERS / PANELS
========================================= */

.bloks-section {
  position: relative;
  padding: 100px 32px;
}

.bloks-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.bloks-panel {
  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.72),
      rgba(5,8,22,.82)
    );

  border: 1px solid rgba(74,125,255,.18);

  border-radius: var(--bloks-radius-lg);

  box-shadow:
    0 20px 55px rgba(0,0,0,.38);

  backdrop-filter: blur(10px);
}

/* =========================================
   HOME: HISTORY / START HERE CALLOUT
========================================= */

.bloks-history-callout {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(56,189,248,.26);
  border-radius: var(--bloks-radius-lg);
  background:
    radial-gradient(circle at 15% 20%, rgba(47,82,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(15,23,42,.82), rgba(5,8,22,.95));
  box-shadow:
    0 24px 70px rgba(0,0,0,.46),
    0 0 36px rgba(47,82,255,.12);
  overflow: hidden;
}

.bloks-history-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.045) 48%,
      transparent 64%
    );
  opacity: .45;
  pointer-events: none;
}

.bloks-history-callout > * {
  position: relative;
  z-index: 1;
}

.bloks-history-callout .bloks-caption {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--bloks-accent);
  font-weight: 800;
}

.bloks-history-callout .bloks-h2 {
  max-width: 980px;
  margin-bottom: 18px;
}

.bloks-history-callout .bloks-body {
  max-width: 760px;
  margin-top: 48px;
  margin-bottom: 28px;
}

/* =========================================
   GRIDS
========================================= */

.bloks-grid {
  display: grid;
  gap: 28px;
}

.bloks-grid-2 {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.bloks-grid-3 {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.bloks-grid-4 {
  grid-template-columns: repeat(4, minmax(0,1fr));
}

/* =========================================
   UTILITIES
========================================= */

.bloks-text-center {
  text-align: center;
}

.bloks-text-gradient {
  background:
    linear-gradient(
      135deg,
      var(--bloks-text),
      var(--bloks-accent),
      var(--bloks-primary-light)
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.bloks-glow {
  box-shadow:
    0 0 28px rgba(47,82,255,.24),
    0 0 60px rgba(56,189,248,.12);
}

.bloks-soft-border {
  border: 1px solid rgba(74,125,255,.24);
}

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

.bloks-stack-sm > * + * {
  margin-block-start: 12px;
}

.bloks-stack-md > * + * {
  margin-block-start: 22px;
}

.bloks-stack-lg > * + * {
  margin-block-start: 36px;
}

/* Prevent stack utilities from breaking grids */
.bloks-grid.bloks-stack-sm > *,
.bloks-grid.bloks-stack-md > *,
.bloks-grid.bloks-stack-lg > * {
  margin-block-start: 0;
}

/* =========================================
   HERO
========================================= */

.bloks-hero {
  position: relative;

  min-height: 640px;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding: 120px 32px;

  background:
    radial-gradient(circle at 20% 20%, rgba(47,82,255,.28), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(56,189,248,.18), transparent 32%),
    linear-gradient(180deg, #050816 0%, #0f172a 55%, #050816 100%);
}

.bloks-hero::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  top: -120px;
  left: -140px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(47,82,255,.28),
      transparent 70%
    );

  filter: blur(40px);

  animation:
    bloksFloat 14s ease-in-out infinite,
    bloksPulse 8s ease-in-out infinite;

  pointer-events: none;

  z-index: 1;
}

.bloks-hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 220px;

  background:
    linear-gradient(180deg, transparent, #050816);

  pointer-events: none;

  z-index: 2;
}

.bloks-hero-bg {
  position: absolute !important;

  top: 50%;
  left: 50%;

  width: 72vw;
  height: 72vw;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(56,189,248,.30) 0%,
      rgba(47,82,255,.20) 34%,
      rgba(47,82,255,.08) 52%,
      transparent 70%
    );

  filter: blur(42px);

  opacity: .95;

  pointer-events: none;

  transition: transform .08s ease-out;

  will-change: transform;

  animation: none !important;

  z-index: 1;
}

.bloks-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.bloks-hero-content .bloks-body {
  margin-top: 22px;
  font-size: 21px;
}

.bloks-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.bloks-hero .bloks-container {
  position: relative;
  z-index: 3;
}

/* =========================================
   AMBIENT MOTION
========================================= */

@keyframes bloksFloat {
  0% {
    transform: translate3d(0,0,0) rotate(0deg);
  }

  50% {
    transform: translate3d(0,-18px,0) rotate(1deg);
  }

  100% {
    transform: translate3d(0,0,0) rotate(0deg);
  }
}

@keyframes bloksPulse {
  0% {
    opacity: .45;
  }

  50% {
    opacity: .75;
  }

  100% {
    opacity: .45;
  }
}

/* =========================================
   PARTICLES
========================================= */

.bloks-particles {
  position: absolute !important;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: 1;
}

.bloks-particles span {
  position: absolute;

  display: block;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: rgba(56,189,248,.7);

  box-shadow: 0 0 12px rgba(56,189,248,.5);

  opacity: .4;

  animation: bloksParticleFloat linear infinite;
}

.bloks-particles span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-duration: 18s;
}

.bloks-particles span:nth-child(2) {
  top: 70%;
  left: 18%;
  width: 4px;
  height: 4px;
  animation-duration: 24s;
}

.bloks-particles span:nth-child(3) {
  top: 30%;
  left: 72%;
  width: 7px;
  height: 7px;
  animation-duration: 22s;
}

.bloks-particles span:nth-child(4) {
  top: 80%;
  left: 82%;
  animation-duration: 28s;
}

.bloks-particles span:nth-child(5) {
  top: 55%;
  left: 50%;
  width: 3px;
  height: 3px;
  animation-duration: 20s;
}

.bloks-particles span:nth-child(6) {
  top: 12%;
  left: 58%;
  width: 5px;
  height: 5px;
  animation-duration: 26s;
}

@keyframes bloksParticleFloat {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-30px) translateX(12px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

/* =========================================
   HEADER / LOGO
========================================= */

body.simpleton-theme .custom-logo-link {
  background: transparent !important;
}

body.simpleton-theme .simpleton-brand img,
body.simpleton-theme .simpleton-brand .custom-logo {
  background: transparent !important;
  mix-blend-mode: screen;
  opacity: .94;

  filter:
    drop-shadow(0 0 8px rgba(56,189,248,.9))
    drop-shadow(0 0 22px rgba(47,82,255,.62))
    drop-shadow(0 0 42px rgba(47,82,255,.34));

  transition:
    opacity var(--bloks-speed),
    filter var(--bloks-speed),
    transform var(--bloks-speed);
}

body.simpleton-theme .custom-logo-link:hover img,
body.simpleton-theme .simpleton-brand:hover img,
body.simpleton-theme .simpleton-brand:hover .custom-logo {
  opacity: 1;

  transform:
    translateY(-1px)
    scale(1.03);

  filter:
    drop-shadow(0 0 8px rgba(56,189,248,.95))
    drop-shadow(0 0 22px rgba(47,82,255,.60))
    drop-shadow(0 0 36px rgba(47,82,255,.32));
}

/* =========================================
   HERO CANVAS / SHADER LAYER
========================================= */

.bloks-hero-canvas,
.bloks-hero-shader {
  position: absolute !important;

  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;

  display: block !important;

  z-index: 0 !important;

  pointer-events: none !important;

  overflow: hidden;
}

.bloks-hero-shader {
  opacity: .45;
}

.bloks-hero-canvas,
.bloks-hero-shader canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* =========================================
   TUTORIAL TEMPLATE
========================================= */

.bloks-tutorial {
  background: var(--bloks-bg);
  color: var(--bloks-text);
}

.bloks-tutorial-hero {
  min-height: 520px;
}

.bloks-tutorial-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.bloks-meta-pill {
  display: inline-flex;
  align-items: center;

  padding: 7px 12px;

  border: 1px solid rgba(56,189,248,.28);
  border-radius: 999px;

  color: var(--bloks-text-soft);
  background: rgba(15,23,42,.55);

  font-size: 13px;
  letter-spacing: .03em;
}

.bloks-article {
  padding: 90px 32px;
}

.bloks-article-inner {
  max-width: 860px;
  margin: 0 auto;
}

.bloks-article-section {
  margin-bottom: 78px;
}

.bloks-article-section h2 {
  margin-bottom: 18px;
}

.bloks-article-section p {
  color: var(--bloks-text-soft);
  font-size: 19px;
  line-height: 1.75;
}

.bloks-demo {
  margin: 38px 0;
  padding: 18px;

  border: 1px solid rgba(56,189,248,.22);
  border-radius: var(--bloks-radius-lg);

  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.72),
      rgba(5,8,22,.9)
    );

  box-shadow:
    0 22px 60px rgba(0,0,0,.42),
    0 0 36px rgba(47,82,255,.14);

  overflow: hidden;
}

.bloks-demo-label {
  margin-bottom: 12px;

  color: var(--bloks-accent);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bloks-callout {
  margin: 34px 0;
  padding: 26px 28px;

  border-left: 3px solid var(--bloks-accent);
  border-radius: var(--bloks-radius-md);

  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.78),
      rgba(5,8,22,.86)
    );

  box-shadow:
    0 0 28px rgba(56,189,248,.09);
}

.bloks-callout-title {
  margin-bottom: 8px;

  color: var(--bloks-accent);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bloks-takeaways {
  padding: 32px;

  border: 1px solid rgba(56,189,248,.25);
  border-radius: var(--bloks-radius-lg);

  background:
    linear-gradient(
      180deg,
      rgba(47,82,255,.14),
      rgba(5,8,22,.86)
    );
}

.bloks-takeaways ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.bloks-takeaways li {
  margin-bottom: 10px;

  color: var(--bloks-text-soft);

  font-size: 18px;
}

.bloks-next-grid {
  margin-top: 30px;
}

/* =========================================
   EDITORIAL ARTICLE TEMPLATE
========================================= */

.bloks-editorial-article {
  background: var(--bloks-bg);
  color: var(--bloks-text);
}

.bloks-article-hero {
  min-height: 560px;
}

.bloks-article-inner {
  max-width: 980px;
  margin: 0 auto;
}

.bloks-article-lede {
  margin: 0 0 52px;

  color: var(--bloks-text-soft);

  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.bloks-pullquote {
  margin: 56px 0 72px;
  padding: 34px 38px;

  border-left: 3px solid var(--bloks-accent);
  border-radius: var(--bloks-radius-lg);

  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.82),
      rgba(5,8,22,.92)
    );

  color: var(--bloks-text);

  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;

  box-shadow:
    0 22px 60px rgba(0,0,0,.42),
    0 0 36px rgba(56,189,248,.12);
}

.bloks-article-list {
  margin: 20px 0 0;
  padding-left: 22px;
}

.bloks-article-list li {
  margin-bottom: 9px;

  color: var(--bloks-text-soft);

  font-size: 17px;
  line-height: 1.55;
}

.bloks-closing-panel {
  margin-top: 90px;
  padding: 46px;

  border: 1px solid rgba(56,189,248,.24);
  border-radius: var(--bloks-radius-lg);

  background:
    radial-gradient(circle at 20% 20%, rgba(47,82,255,.18), transparent 38%),
    linear-gradient(180deg, rgba(15,23,42,.78), rgba(5,8,22,.95));
}

.bloks-closing-panel p {
  color: var(--bloks-text-soft);
  font-size: 20px;
  line-height: 1.7;
}

/* Timeline refinements */

.bloks-editorial-article .bloks-timeline {
  margin-top: 64px;
}

.bloks-editorial-article .timeline-item {
  padding: 34px;
}

.bloks-editorial-article .timeline-item h2 {
  margin: 0 0 16px;

  color: var(--bloks-text);

  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.bloks-editorial-article .timeline-item p {
  color: var(--bloks-text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.bloks-editorial-article .timeline-item p:last-child {
  margin-bottom: 0;
}

/* =========================================
   EDITORIAL IMAGES
========================================= */

.bloks-feature-image {
  margin: 42px 0;

  border: 1px solid rgba(56,189,248,.22);
  border-radius: var(--bloks-radius-lg);

  overflow: hidden;

  box-shadow:
    0 24px 70px rgba(0,0,0,.48),
    0 0 36px rgba(47,82,255,.16);
}

.bloks-feature-image img {
  display: block;
  width: 100%;
  height: auto;
}

.bloks-editorial-card {
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: stretch;
}

.bloks-editorial-media,
.bloks-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  align-content: start;
}

.bloks-image-grid {
  gap: 22px;
  margin: 42px 0;
}

.bloks-editorial-media figure,
.bloks-image-grid figure {
  margin: 0 !important;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border: 1px solid rgba(56,189,248,.18);
  border-radius: var(--bloks-radius-md);

  background: rgba(15,23,42,.5);

  box-shadow:
    0 18px 46px rgba(0,0,0,.38),
    0 0 24px rgba(47,82,255,.10);
}

.bloks-editorial-media img,
.bloks-image-grid img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;

  display: block !important;

  object-fit: cover;
  object-position: center;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* =========================================
   GLOBAL CODE BLOCKS
========================================= */

.entry-content pre,
.siteorigin-widget-tinymce pre,
.so-widget-sow-editor pre,
.bloks-article pre,
.bloks-editorial-article pre,
.bloks-card pre,
.bloks-code pre {
  margin: 1.25rem 0;
  padding: 1.4rem 1.5rem;

  background:
    linear-gradient(
      180deg,
      rgba(8, 12, 28, 0.96),
      rgba(5, 8, 20, 0.98)
    ) !important;

  border: 1px solid rgba(120, 170, 255, 0.16) !important;
  border-radius: 18px !important;

  overflow-x: auto;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 30px rgba(0,0,0,0.28) !important;

  backdrop-filter: blur(8px);
}

.entry-content pre code,
.siteorigin-widget-tinymce pre code,
.so-widget-sow-editor pre code,
.bloks-article pre code,
.bloks-editorial-article pre code,
.bloks-card pre code,
.bloks-code pre code {
  display: block;

  color: rgba(215, 235, 255, 0.96) !important;

  font-family:
    "JetBrains Mono",
    "Fira Code",
    "IBM Plex Mono",
    Consolas,
    Monaco,
    monospace;

  font-size: 0.92rem;
  line-height: 1.7;

  white-space: pre;
}

.entry-content pre::-webkit-scrollbar,
.siteorigin-widget-tinymce pre::-webkit-scrollbar,
.so-widget-sow-editor pre::-webkit-scrollbar,
.bloks-article pre::-webkit-scrollbar,
.bloks-editorial-article pre::-webkit-scrollbar,
.bloks-card pre::-webkit-scrollbar,
.bloks-code pre::-webkit-scrollbar {
  height: 10px;
}

.entry-content pre::-webkit-scrollbar-track,
.siteorigin-widget-tinymce pre::-webkit-scrollbar-track,
.so-widget-sow-editor pre::-webkit-scrollbar-track,
.bloks-article pre::-webkit-scrollbar-track,
.bloks-editorial-article pre::-webkit-scrollbar-track,
.bloks-card pre::-webkit-scrollbar-track,
.bloks-code pre::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
}

.entry-content pre::-webkit-scrollbar-thumb,
.siteorigin-widget-tinymce pre::-webkit-scrollbar-thumb,
.so-widget-sow-editor pre::-webkit-scrollbar-thumb,
.bloks-article pre::-webkit-scrollbar-thumb,
.bloks-editorial-article pre::-webkit-scrollbar-thumb,
.bloks-card pre::-webkit-scrollbar-thumb,
.bloks-code pre::-webkit-scrollbar-thumb {
  background: rgba(120, 170, 255, 0.28);
  border-radius: 999px;
}

.entry-content pre::-webkit-scrollbar-thumb:hover,
.siteorigin-widget-tinymce pre::-webkit-scrollbar-thumb:hover,
.so-widget-sow-editor pre::-webkit-scrollbar-thumb:hover,
.bloks-article pre::-webkit-scrollbar-thumb:hover,
.bloks-editorial-article pre::-webkit-scrollbar-thumb:hover,
.bloks-card pre::-webkit-scrollbar-thumb:hover,
.bloks-code pre::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 190, 255, 0.45);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 980px) {

  .bloks-grid-2,
  .bloks-grid-3,
  .bloks-grid-4 {
    grid-template-columns: 1fr;
  }

  .bloks-section {
    padding: 72px 22px;
  }

}

@media (max-width: 780px) {

  .bloks-card {
    grid-template-columns: 1fr;

    min-height: auto;

    text-align: center;

    gap: 18px;

    padding: 26px 22px 28px;

    margin-bottom: 22px;
  }

  .bloks-card-media img {
    max-width: 220px;
    width: 72%;
  }

  .bloks-card-content p {
    font-size: 17px;
    line-height: 1.45;
  }

  .bloks-card-icon {
    margin: 0 auto 14px;
  }

  .bloks-hero {
    min-height: 560px;
    padding: 90px 22px;
  }

  .bloks-hero-content .bloks-body {
    font-size: 18px;
  }

  .bloks-hero-bg {
    width: 110vw;
    height: 110vw;
  }

  .bloks-article {
    padding: 64px 22px;
  }

  .bloks-article-section {
    margin-bottom: 58px;
  }

  .bloks-article-section p {
    font-size: 17px;
    line-height: 1.65;
  }

  .bloks-article-hero {
    min-height: 520px;
  }

  .bloks-article-lede {
    font-size: 21px;
  }

  .bloks-pullquote {
    padding: 28px;
    margin: 42px 0 58px;
  }

  .bloks-closing-panel {
    padding: 30px 24px;
  }

  .bloks-closing-panel p {
    font-size: 18px;
  }

  .bloks-editorial-article .timeline-item {
    padding: 26px 22px;
  }

  .bloks-editorial-media,
  .bloks-image-grid {
    grid-template-columns: 1fr;
  }

}

body.simpleton-theme {
  background: #050816;
  color: #f8fafc;
}

/* =========================================================
   Simpleton BLOKS Header
========================================================= */

body.simpleton-theme .simpleton-site-header {
  background: rgba(5, 8, 22, 0.2);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(56,189,248,.18);

  box-shadow:
    0 10px 30px rgba(0,0,0,.28),
    0 0 24px rgba(47,82,255,.10);
}

body.simpleton-theme .simpleton-header-inner {
  min-height: 118px;
  align-items: center;
}

body.simpleton-theme .simpleton-brand img,
body.simpleton-theme .simpleton-brand .custom-logo {
  width: var(--simpleton-logo-width, 60px) !important;
  max-width: var(--simpleton-logo-width, 60px) !important;
  height: auto !important;
  max-height: none !important;

  mix-blend-mode: screen;
  opacity: .94;

  filter:
    drop-shadow(0 0 8px rgba(56,189,248,.9))
    drop-shadow(0 0 22px rgba(47,82,255,.62))
    drop-shadow(0 0 42px rgba(47,82,255,.34));
}

body.simpleton-theme .simpleton-nav .menu {
  gap: 2rem;
}

body.simpleton-theme .simpleton-nav a {
  color: #f8fafc;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .01em;
}

body.simpleton-theme .simpleton-nav a:hover,
body.simpleton-theme .simpleton-nav .current-menu-item > a {
  color: #38bdf8;
}

body.simpleton-theme .simpleton-nav .sub-menu {
  background: rgba(5, 8, 22, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

body.simpleton-theme.home .simpleton-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

body.admin-bar.simpleton-theme.home .simpleton-site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.simpleton-theme.home .simpleton-site-header {
    top: 46px;
  }
}

body.simpleton-theme.home .bloks-hero {
  margin-top: 0;
  padding-top: 180px;
}

/* =========================================================
   BLOKS Sticky Header Shrink
========================================================= */

body.simpleton-theme .simpleton-site-header,
body.simpleton-theme .simpleton-header-inner,
body.simpleton-theme .simpleton-brand img,
body.simpleton-theme .simpleton-brand .custom-logo {
  transition:
    /*min-height 220ms ease, -- glitch?*/
    padding 220ms ease,
    width 220ms ease,
    max-width 220ms ease,
    filter 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

body.simpleton-theme.bloks-header-scrolled .simpleton-site-header {
  background: rgba(5, 8, 22, 0.88);

  border-bottom: 1px solid rgba(56,189,248,.28);

  box-shadow:
    0 10px 35px rgba(0,0,0,.38),
    0 0 20px rgba(47,82,255,.10);
}

body.simpleton-theme.bloks-header-scrolled .simpleton-header-inner {
  min-height: 60px;
}

body.simpleton-theme.bloks-header-scrolled .simpleton-brand img,
body.simpleton-theme.bloks-header-scrolled .simpleton-brand .custom-logo {
  transform: scale(.72);
  transform-origin: left center;
  opacity: .9;

  filter:
    drop-shadow(0 0 7px rgba(56,189,248,.8))
    drop-shadow(0 0 18px rgba(47,82,255,.52));
}

body.simpleton-theme.bloks-header-scrolled .simpleton-site-header {
  background: rgba(5, 8, 22, 0.96);
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow:
    0 10px 35px rgba(0,0,0,.38),
    0 0 20px rgba(47,82,255,.10);
}

/* =========================================================
   Simpleton BLOKS Footer
========================================================= */

body.simpleton-theme .simpleton-footer {
  background: #050816;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: #94a3b8;
}

body.simpleton-theme .simpleton-footer a {
  color: #cbd5e1;
}

body.simpleton-theme .simpleton-footer a:hover {
  color: #38bdf8;
}

/* =========================================================
   Mobile Header
========================================================= */

@media (max-width: 720px) {
  body.simpleton-theme .simpleton-header-inner {
    min-height: auto;
    padding: 1rem 0;
  }

  body.simpleton-theme .simpleton-brand img,
  body.simpleton-theme .simpleton-brand .custom-logo {
    width: var(--simpleton-logo-width, 60px) !important;
    max-width: var(--simpleton-logo-width, 60px) !important;
  }

  body.simpleton-theme .simpleton-menu-toggle {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255,255,255,0.16);
    color: #f8fafc;
  }
}

body.simpleton-theme.bloks-header-scrolled .simpleton-header-inner {
  min-height: 72px;
}

/* =========================================
   LEGAL / POLICY PAGES
========================================= */

.bloks-legal {
  padding: 90px 32px;
  background: var(--bloks-bg);
  color: var(--bloks-text);
}

.bloks-legal-inner {
  max-width: 940px;
  margin: 0 auto;
}

.bloks-legal h1 {
  margin: 0 0 28px;
  color: var(--bloks-text);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.bloks-legal h2 {
  margin: 48px 0 16px;
  color: var(--bloks-text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bloks-legal p,
.bloks-legal li {
  color: var(--bloks-text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.bloks-legal a {
  color: var(--bloks-accent);
  
  font-weight: 700;
}

.bloks-legal-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(56,189,248,.18);
  border-radius: var(--bloks-radius-lg);
  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.72),
      rgba(5,8,22,.92)
    );
  box-shadow:
    0 24px 70px rgba(0,0,0,.42),
    0 0 38px rgba(47,82,255,.10);
}

.bloks-legal-title {
  margin: 0 0 32px;
  color: var(--bloks-text);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* =========================================
   BLOKS ARTICLE LIST / ARCHIVES
========================================= */

body.simpleton-theme.blog .simpleton-main,
body.simpleton-theme.archive .simpleton-main {
  padding: 90px 32px;
}

body.simpleton-theme.blog .simpleton-content,
body.simpleton-theme.archive .simpleton-content {
  max-width: 1120px;
}

body.simpleton-theme .simpleton-entry {
  margin-bottom: 44px;
  padding: 34px 0 44px;
  border-bottom: 1px solid rgba(56,189,248,.22);
}

body.simpleton-theme .simpleton-entry-title a {
  color: var(--bloks-primary-light);
  text-decoration: none;
}

body.simpleton-theme .simpleton-entry-title a:hover {
  color: var(--bloks-accent);
}

body.simpleton-theme .simpleton-entry-meta {
  color: var(--bloks-text-muted);
}

body.simpleton-theme .simpleton-entry-content,
body.simpleton-theme .simpleton-entry-content p {
  color: var(--bloks-text-soft);
  font-size: 18px;
  line-height: 1.7;
}

/* =========================================
   BLOKS Shader Studio Overrides
========================================= */

/* Hide default WordPress/simpleton post chrome on shader pages */
.single-bloks_shader .simpleton-title,
.single-bloks_shader .simpleton-post-meta,
.single-bloks_shader .simpleton-meta,
.single-bloks_shader .simpleton-entry-meta,
.single-bloks_shader .entry-meta,
.single-bloks_shader .posted-on,
.single-bloks_shader .simpleton-entry > .simpleton-featured-image,
.single-bloks_shader .simpleton-entry > .post-thumbnail {
  display: none !important;
}

/* Tighten shader page wrappers */
.single-bloks_shader .simpleton-content,
.single-bloks_shader .simpleton-entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Let gallery.css own Studio/gallery/single-shader component styling */
.bloks-shader-studio {
  margin: 0 !important;
  padding: 10px !important;
  width: 100%;
}

.bloks-shader-studio > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* =========================================================
   HERO
========================================================= */

.bloks-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(47,82,255,.28), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(56,189,248,.18), transparent 32%),
    linear-gradient(180deg, #050816 0%, #0f172a 55%, #050816 100%);
}

.bloks-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -120px;
  left: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,82,255,.28), transparent 70%);
  filter: blur(40px);
  animation: bloksFloat 14s ease-in-out infinite, bloksPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.bloks-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, #050816);
  pointer-events: none;
  z-index: 2;
}

.bloks-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.bloks-hero-content .bloks-body {
  margin-top: 22px;
  font-size: 21px;
}

.bloks-hero .bloks-container {
  position: relative;
  z-index: 3;
}

.bloks-hero-shader {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden;
  opacity: .38;
}

.bloks-hero-shader canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

@keyframes bloksFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-18px,0) rotate(1deg); }
}

@keyframes bloksPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: .75; }
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.bloks-h1,
.bloks-h2,
.bloks-h3,
.bloks-card-content h3 {
  margin: 0;
  color: var(--bloks-text);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.bloks-h1 {
  font-size: clamp(52px, 8vw, 96px);
}

.bloks-h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.bloks-h3,
.bloks-card-content h3 {
  font-size: clamp(30px, 3vw, 42px);
}

.bloks-body,
.bloks-card-content p {
  color: var(--bloks-text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.bloks-caption {
  margin: 0 0 18px;
  color: var(--bloks-text-muted);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bloks-readable {
  max-width: 72ch;
}

/* =========================================================
   BUTTONS
========================================================= */

.bloks-btn,
.bloks-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition:
    color var(--bloks-speed),
    background var(--bloks-speed),
    border-color var(--bloks-speed),
    box-shadow var(--bloks-speed),
    transform var(--bloks-speed);
}

.bloks-btn-primary,
.bloks-card-link {
  color: var(--bloks-text);
  background: linear-gradient(135deg, rgba(47,82,255,.92), rgba(56,189,248,.72));
  border: 1px solid rgba(56,189,248,.55);
  box-shadow:
    0 0 18px rgba(47,82,255,.22),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.bloks-btn-primary:hover,
.bloks-card-link:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.85);
  box-shadow:
    0 0 26px rgba(56,189,248,.32),
    0 10px 26px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.bloks-btn-ghost {
  color: var(--bloks-text-soft);
  background: rgba(15,23,42,.5);
  border: 1px solid rgba(148,163,184,.22);
}

.bloks-btn-ghost:hover {
  color: var(--bloks-text);
  background: rgba(47,82,255,.16);
  border-color: rgba(74,125,255,.42);
}

.bloks-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* =========================================
   SIMPLETON RADIO
   Radio-first page composition
========================================= */

:root {
  --radio-bg: #030713;
  --radio-bg-deep: #01040c;
  --radio-surface: rgba(7, 14, 34, .88);
  --radio-surface-soft: rgba(11, 20, 45, .72);
  --radio-line: rgba(83, 133, 255, .18);
  --radio-line-strong: rgba(56, 189, 248, .42);
  --radio-cyan: #56f0ff;
  --radio-mint: #80ffd5;
  --radio-magenta: #ff2bb8;
  --radio-violet: #9a54ff;
}

/* Give Radio pages a deeper, more immersive canvas. */
body {
  background:
    radial-gradient(circle at 50% -10%, rgba(47, 82, 255, .12), transparent 34%),
    linear-gradient(180deg, var(--radio-bg) 0%, var(--radio-bg-deep) 100%);
}

.site-content,
main,
#primary,
.content-area {
  position: relative;
}

/* Wider radio workspace. */
.bloks-radio-directory,
.bloks-player-app,
.single-bloks_radio_station .entry-content {
  width: min(100%, 1540px);
  margin-inline: auto;
}

.single-bloks_radio_station .site-main,
.post-type-archive-bloks_radio_station .site-main {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: clamp(18px, 3vw, 48px);
}

/* Remove generic post chrome from automatic station channels. */
.single-bloks_radio_station .entry-header,
.single-bloks_radio_station .entry-footer,
.single-bloks_radio_station .post-navigation {
  display: none;
}

.single-bloks_radio_station article,
.single-bloks_radio_station .entry-content {
  margin: 0;
  padding: 0;
}

/* Radio app spacing and scale. */
.bloks-player-app {
  gap: clamp(20px, 2vw, 34px);
  align-items: start;
}

.bloks-player-app .bloks-shader-library-stage {
  position: sticky;
  top: 28px;
}

.bloks-player-app .bloks-shader-wrap {
  border-color: rgba(56, 189, 248, .20);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .48),
    0 0 50px rgba(47, 82, 255, .10);
}

.bloks-player-app .bloks-shader-library-side {
  overflow: hidden;
  border-color: var(--radio-line);
  background:
    linear-gradient(180deg, rgba(10, 18, 42, .94), rgba(4, 9, 24, .96));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .38);
}

/* Stronger radio identity in the panel header. */
.bloks-player-app .bloks-shader-player-panel-head {
  padding: clamp(22px, 2.2vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(86, 240, 255, .08), transparent 38%),
    linear-gradient(180deg, rgba(19, 33, 70, .56), rgba(7, 14, 34, 0));
}

.bloks-player-app .bloks-shader-player-kicker {
  color: var(--radio-cyan);
  letter-spacing: .14em;
}

.bloks-player-app .bloks-shader-player-panel-head h2 {
  max-width: 30ch;
}

/* Now Playing becomes part of the radio console, not a detached strip. */
.bloks-radio-now-playing {
  margin-bottom: clamp(14px, 1.4vw, 22px);
  min-height: 48px;
  border-color: var(--radio-line-strong);
  background:
    linear-gradient(90deg, rgba(9, 24, 52, .96), rgba(3, 9, 25, .94));
  box-shadow:
    0 12px 34px rgba(0, 0, 0, .28),
    0 0 28px rgba(86, 240, 255, .06);
}

.bloks-radio-now-playing-label {
  min-width: 122px;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26, 93, 173, .50), rgba(21, 52, 116, .34));
  color: var(--radio-mint);
}

.bloks-radio-ticker-text {
  font-size: 13px;
  letter-spacing: .045em;
}

/* Make the station itself the visual focus of the side panel. */
.bloks-player-audio-source .bloks-shader-panel-section-head span {
  color: var(--radio-cyan);
}

.bloks-radio-current-station {
  padding: 16px;
  gap: 18px;
  border-color: rgba(86, 240, 255, .18);
  background:
    radial-gradient(circle at 0% 0%, rgba(86, 240, 255, .07), transparent 45%),
    rgba(3, 9, 25, .58);
}

.bloks-radio-current-station-logo {
  width: 92px;
  height: 92px;
  flex-basis: 92px;
  padding: 8px;
  border-radius: 16px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .28),
    0 0 24px rgba(86, 240, 255, .08);
}

.bloks-radio-current-station-copy strong {
  font-size: clamp(20px, 2vw, 28px);
}

.bloks-radio-current-station-label {
  color: var(--radio-mint);
}

/* Transport: more like a broadcast console. */
.bloks-radio-transport {
  padding-top: 4px;
}

.bloks-radio-transport .bloks-player-audio-action {
  min-height: 38px;
  padding-inline: 16px;
  border-color: rgba(86, 240, 255, .28);
}

.bloks-radio-transport .bloks-radio-play {
  border-color: rgba(86, 240, 255, .58);
  background:
    linear-gradient(135deg, rgba(17, 111, 171, .40), rgba(28, 73, 177, .34));
  box-shadow: 0 0 20px rgba(86, 240, 255, .08);
}

.bloks-radio-volume-wrap {
  flex: 1 1 190px;
}

/* Softer hierarchy inside the side panel. */
.bloks-player-app .bloks-shader-panel-section {
  border-top-color: rgba(120, 153, 210, .12);
}

.bloks-player-app .bloks-shader-panel-section-head {
  padding-top: 20px;
}

.bloks-player-app .bloks-shader-info {
  border-color: rgba(120, 153, 210, .14);
  background: rgba(3, 9, 25, .42);
}

/* Directory feels like a proper channel guide. */
.bloks-radio-directory-toolbar {
  position: sticky;
  top: 16px;
  z-index: 8;
  padding: 14px;
  border: 1px solid var(--radio-line);
  border-radius: 16px;
  background: rgba(3, 8, 22, .86);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
}

.bloks-radio-station-grid {
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 22px;
}

.bloks-radio-station-card {
  border-color: rgba(86, 240, 255, .12);
  background:
    linear-gradient(180deg, rgba(12, 23, 52, .86), rgba(5, 10, 27, .96));
}

.bloks-radio-station-card:hover {
  border-color: rgba(86, 240, 255, .58);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, .42),
    0 0 32px rgba(86, 240, 255, .08);
}

.bloks-radio-station-logo {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 42%, rgba(47, 82, 255, .18), transparent 58%),
    linear-gradient(180deg, rgba(8, 16, 38, .92), rgba(3, 8, 22, .98));
}

.bloks-radio-station-card-copy {
  padding: 18px;
}

.bloks-radio-station-listen {
  color: var(--radio-mint);
}

/* Subtle radio glow behind the app. */
.bloks-player-app::before {
  content: "";
  position: absolute;
  inset: -80px -40px auto;
  height: 420px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 40%, rgba(47, 82, 255, .12), transparent 34%),
    radial-gradient(circle at 72% 22%, rgba(86, 240, 255, .06), transparent 30%);
  filter: blur(30px);
}

.bloks-player-app {
  position: relative;
}

/* Responsive radio layout. */
@media (max-width: 980px) {
  .bloks-player-app .bloks-shader-library-stage {
    position: static;
  }

  .bloks-radio-current-station-logo {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }
}

@media (max-width: 640px) {
  .single-bloks_radio_station .site-main,
  .post-type-archive-bloks_radio_station .site-main {
    padding-inline: 12px;
  }

  .bloks-radio-now-playing {
    min-height: 44px;
  }

  .bloks-radio-now-playing-label {
    min-width: auto;
    padding-inline: 10px;
  }

  .bloks-radio-current-station {
    align-items: flex-start;
  }

  .bloks-radio-current-station-logo {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }
}


/* =========================================
   SIMPLETON RADIO 0.2
   Late-night broadcast lounge
========================================= */

/* Ambient broadcast-room backdrop */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .32;
}

body::before {
  width: 52vw;
  height: 52vw;
  left: -18vw;
  top: 12vh;
  background: rgba(32, 72, 255, .16);
}

body::after {
  width: 42vw;
  height: 42vw;
  right: -14vw;
  top: 28vh;
  background: rgba(38, 230, 255, .09);
}

/* Header becomes lighter and more architectural */
.site-header {
  border-bottom-color: rgba(92, 132, 255, .12);
  background: rgba(3, 7, 19, .84);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(86, 240, 255, .16) 30%,
    rgba(91, 91, 255, .28) 50%,
    rgba(86, 240, 255, .16) 70%,
    transparent
  );
}

/* Main Radio workspace */
.bloks-player-app {
  isolation: isolate;
  padding-bottom: clamp(48px, 7vw, 100px);
}

.bloks-player-app::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 70px -50px auto;
  height: 620px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 26% 38%, rgba(47, 82, 255, .14), transparent 42%),
    radial-gradient(ellipse at 76% 30%, rgba(86, 240, 255, .07), transparent 38%);
  filter: blur(40px);
}

/* Broadcast ticker */
.bloks-radio-now-playing {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(86, 240, 255, .24);
  background:
    linear-gradient(90deg, rgba(7, 24, 53, .98), rgba(4, 10, 28, .96));
}

.bloks-radio-now-playing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255,255,255,.025) 44%,
      rgba(86,240,255,.055) 50%,
      transparent 58%
    );
  transform: translateX(-120%);
  animation: simpleton-radio-ticker-sheen 9s ease-in-out infinite;
}

.bloks-radio-now-playing-label {
  position: relative;
  z-index: 1;
  min-width: 132px;
  border-right: 1px solid rgba(86, 240, 255, .18);
  box-shadow: 12px 0 28px rgba(0, 0, 0, .16);
}

.bloks-radio-now-playing-label::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--radio-mint);
  box-shadow: 0 0 12px rgba(128, 255, 213, .72);
  animation: simpleton-radio-live-pulse 2.2s ease-in-out infinite;
}

.bloks-radio-ticker-text {
  color: rgba(242, 247, 255, .88);
  font-weight: 650;
}

@keyframes simpleton-radio-ticker-sheen {
  0%, 72% { transform: translateX(-120%); }
  100% { transform: translateX(130%); }
}

@keyframes simpleton-radio-live-pulse {
  0%, 100% { opacity: .48; transform: scale(.78); }
  50% { opacity: 1; transform: scale(1); }
}

/* Visual stage gets the cinematic treatment */
.bloks-player-app .bloks-shader-library-stage {
  border-radius: 26px;
}

.bloks-player-app .bloks-shader-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(87, 130, 255, .22);
  background: #02050d;
  box-shadow:
    0 36px 100px rgba(0, 0, 0, .62),
    0 0 0 1px rgba(255, 255, 255, .015),
    0 0 70px rgba(47, 82, 255, .10);
}

.bloks-player-app .bloks-shader-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    inset 0 0 55px rgba(1, 4, 12, .18);
}

/* Side console: one strong shell, fewer competing boxes */
.bloks-player-app .bloks-shader-library-side {
  border-radius: 24px;
  border: 1px solid rgba(86, 240, 255, .14);
  background:
    radial-gradient(circle at 12% 0%, rgba(52, 105, 255, .09), transparent 28%),
    linear-gradient(180deg, rgba(9, 18, 43, .94), rgba(3, 8, 23, .97));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255, 255, 255, .025);
}

.bloks-player-app .bloks-shader-player-panel-head {
  border-bottom: 1px solid rgba(120, 153, 210, .10);
}

.bloks-player-app .bloks-shader-player-panel-head h2 {
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.25;
}

/* Station identity becomes the hero of the console */
.bloks-radio-current-station {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2vw, 26px);
  gap: 22px;
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 18%, rgba(86, 240, 255, .09), transparent 34%),
    linear-gradient(135deg, rgba(14, 30, 65, .76), rgba(5, 12, 31, .68));
  box-shadow:
    inset 0 0 0 1px rgba(86, 240, 255, .11),
    0 18px 44px rgba(0, 0, 0, .22);
}

.bloks-radio-current-station::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(86, 240, 255, .08);
  filter: blur(30px);
  pointer-events: none;
}

.bloks-radio-current-station-logo {
  width: 112px;
  height: 112px;
  flex-basis: 112px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 18px 42px rgba(0,0,0,.34),
    0 0 28px rgba(86,240,255,.08);
}

.bloks-radio-current-station-copy {
  position: relative;
  z-index: 1;
  gap: 7px;
}

.bloks-radio-current-station-label {
  font-size: 10px;
  letter-spacing: .16em;
}

.bloks-radio-current-station-copy strong {
  font-size: clamp(22px, 2.3vw, 32px);
  letter-spacing: -.025em;
}

/* Broadcast transport */
.bloks-radio-transport {
  gap: 9px;
  padding: 4px 0 2px;
}

.bloks-radio-transport .bloks-player-audio-action {
  min-height: 42px;
  border-radius: 999px;
  background: rgba(10, 19, 42, .74);
  border: 1px solid rgba(131, 158, 211, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.bloks-radio-transport .bloks-player-audio-action:hover {
  transform: translateY(-1px);
  border-color: rgba(86, 240, 255, .42);
  background: rgba(18, 38, 75, .82);
}

.bloks-radio-transport .bloks-radio-play {
  min-width: 92px;
  color: #f7ffff;
  border-color: rgba(86, 240, 255, .50);
  background:
    linear-gradient(135deg, rgba(0, 123, 177, .58), rgba(35, 74, 190, .48));
  box-shadow:
    0 0 24px rgba(86, 240, 255, .08),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.bloks-radio-volume-wrap {
  margin-top: 8px;
  padding: 8px 2px 0;
  color: rgba(205, 218, 242, .66);
}

.bloks-radio-volume-wrap span {
  min-width: 50px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Information hierarchy */
.bloks-player-app .bloks-shader-panel-section {
  padding-inline: clamp(18px, 2vw, 28px);
}

.bloks-player-app .bloks-shader-panel-section-head {
  gap: 12px;
  margin-bottom: 15px;
}

.bloks-player-app .bloks-shader-panel-section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(86, 240, 255, .24), transparent);
}

.bloks-player-app .bloks-shader-panel-section-head span {
  letter-spacing: .12em;
}

/* Visual info recedes behind the station experience */
.bloks-player-app .bloks-shader-info {
  border: 0;
  border-radius: 16px;
  background: rgba(5, 12, 30, .46);
  box-shadow: inset 0 0 0 1px rgba(120, 153, 210, .10);
}

.bloks-player-app .bloks-shader-info:hover {
  box-shadow:
    inset 0 0 0 1px rgba(86, 240, 255, .16),
    0 12px 32px rgba(0, 0, 0, .18);
}

/* Channel guide */
.bloks-radio-directory {
  padding-block: clamp(20px, 4vw, 60px);
}

.bloks-radio-directory-toolbar {
  margin-bottom: 30px;
  padding: 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 20, 45, .90), rgba(3, 9, 25, .90));
  box-shadow:
    0 22px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.bloks-radio-directory-search,
.bloks-radio-directory-filter {
  min-height: 46px;
  border-radius: 12px;
  border-color: rgba(86, 240, 255, .14);
  background: rgba(1, 5, 16, .66);
}

.bloks-radio-directory-search:focus,
.bloks-radio-directory-filter:focus {
  outline: none;
  border-color: rgba(86, 240, 255, .50);
  box-shadow: 0 0 0 3px rgba(86, 240, 255, .06);
}

.bloks-radio-station-grid {
  gap: 24px;
}

.bloks-radio-station-card {
  position: relative;
  border-radius: 20px;
  transform: translateZ(0);
}

.bloks-radio-station-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(86,240,255,.06), transparent 38%);
  transition: opacity .22s ease;
}

.bloks-radio-station-card:hover::before {
  opacity: 1;
}

.bloks-radio-station-card:hover {
  transform: translateY(-5px);
}

.bloks-radio-station-logo {
  border-bottom: 1px solid rgba(120,153,210,.09);
}

.bloks-radio-station-logo img {
  transition: transform .28s ease, filter .28s ease;
}

.bloks-radio-station-card:hover .bloks-radio-station-logo img {
  transform: scale(1.035);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.28));
}

.bloks-radio-station-card-copy h3 {
  font-size: 19px;
}

.bloks-radio-station-listen {
  padding-top: 4px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bloks-radio-now-playing::before,
  .bloks-radio-now-playing-label::before {
    animation: none;
  }

  .bloks-radio-station-card,
  .bloks-radio-station-logo img,
  .bloks-radio-transport .bloks-player-audio-action {
    transition: none;
  }
}

@media (max-width: 980px) {
  .bloks-radio-current-station-logo {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
  }
}

@media (max-width: 640px) {
  .bloks-radio-current-station {
    gap: 14px;
    padding: 14px;
  }

  .bloks-radio-current-station-logo {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    border-radius: 14px;
  }

  .bloks-radio-current-station-copy strong {
    font-size: 20px;
  }

  .bloks-radio-transport .bloks-player-audio-action {
    min-height: 40px;
    padding-inline: 13px;
  }
}




/* =========================================
   SIMPLETON RADIO 0.3.1
   LAVA RADIO BRAND REFINEMENT
========================================= */

/* Reduce generic theme spacing before the Radio experience. */
body.simpleton-radio-has-player .site-main {
  position: relative;
  padding-top: 0;
}

body.simpleton-radio-has-player .entry-content,
.single-bloks_radio_station .entry-content {
  margin-top: 0;
}

/* Real LAVA Radio masthead inserted by the child theme. */
.lava-radio-masthead {
  width: min(calc(100% - 36px), 1200px);
  margin: clamp(30px, 4vw, 56px) auto clamp(26px, 3vw, 42px);
  text-align: center;
}

.lava-radio-masthead__eyebrow {
  margin: 0 0 12px;
  color: var(--radio-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.lava-radio-masthead__title {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 950;
  line-height: .92;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-shadow:
    0 0 28px rgba(86, 240, 255, .12),
    0 0 70px rgba(47, 82, 255, .12);
}

@supports (-webkit-background-clip: text) {
  .lava-radio-masthead__title {
    background: linear-gradient(
      90deg,
      #f8fbff 8%,
      #89f7ff 38%,
      #b9b7ff 64%,
      #f8fbff 92%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.lava-radio-masthead__tagline {
  margin: 15px 0 0;
  color: rgba(224, 234, 250, .84);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: .015em;
}

.lava-radio-masthead__subline {
  margin: 7px 0 0;
  color: rgba(174, 195, 226, .60);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Decorative broadcast horizon. */
.lava-radio-masthead::after {
  content: "";
  display: block;
  width: min(520px, 72%);
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(86, 240, 255, .32),
    rgba(91, 91, 255, .42),
    rgba(86, 240, 255, .32),
    transparent
  );
  box-shadow: 0 0 20px rgba(86, 240, 255, .08);
}

/* Correct the panel brand without leaving the legacy kicker visible. */
.bloks-player-app .bloks-shader-player-kicker {
  position: relative;
  overflow: hidden;
  width: auto;
  height: 22px;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.bloks-player-app .bloks-shader-player-kicker::before {
  content: "LAVA RADIO";
  display: block;
  color: var(--radio-cyan);
  font-size: 15px;
  font-weight: 900;
  line-height: 22px;
  letter-spacing: .16em;
}

/* Keep the masthead-to-ticker transition compact. */
body.simpleton-radio-has-player .bloks-radio-now-playing {
  margin-top: 0;
}

/* Friendly metadata fallback appearance. */
.bloks-radio-ticker-text.is-metadata-fallback {
  color: rgba(189, 205, 231, .68);
  font-style: italic;
}

/* Slightly more breathing room around the actual console. */
body.simpleton-radio-has-player .bloks-player-app {
  margin-top: clamp(24px, 3vw, 42px);
}

@media (max-width: 700px) {
  .lava-radio-masthead {
    margin-top: 28px;
    margin-bottom: 26px;
  }

  .lava-radio-masthead__title {
    letter-spacing: .065em;
  }

  .lava-radio-masthead__subline {
    font-size: 10px;
    letter-spacing: .08em;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.2
   COMPACT LAVA RADIO IDENT
========================================= */

.lava-radio-masthead {
  width: min(calc(100% - 36px), 1100px);
  margin: clamp(20px, 2.6vw, 34px) auto clamp(18px, 2vw, 26px);
  text-align: center;
}

.lava-radio-masthead__eyebrow {
  margin: 0 0 6px;
  font-size: 9px;
  letter-spacing: .20em;
}

.lava-radio-masthead__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: .07em;
  white-space: nowrap;
}

.lava-radio-masthead__tagline {
  margin: 8px 0 0;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 650;
}

.lava-radio-masthead__subline {
  display: none;
}

.lava-radio-masthead::after {
  width: min(360px, 60%);
  margin-top: 14px;
}

body.simpleton-radio-has-player .bloks-radio-now-playing {
  margin-top: 0;
  margin-bottom: clamp(16px, 1.6vw, 22px);
}

body.simpleton-radio-has-player .bloks-player-app {
  margin-top: 0;
}

@media (max-width: 700px) {
  .lava-radio-masthead {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .lava-radio-masthead__title {
    font-size: clamp(28px, 10vw, 42px);
    letter-spacing: .05em;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.3
   TOP SPACING + CENTERED IDENT
========================================= */

/*
 * The Simpleton page shell reserves generous vertical space for normal pages.
 * Radio is an application-like experience, so remove that inherited spacing.
 */
body.simpleton-radio-has-player .simpleton-entry,
body.simpleton-radio-has-player .simpleton-entry-content,
body.simpleton-radio-has-player .site-main,
body.simpleton-radio-has-player main,
body.simpleton-radio-has-player #primary,
body.simpleton-radio-has-player .content-area {
  min-height: 0 !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* The empty page title still occupies vertical rhythm in the parent theme. */
body.simpleton-radio-has-player .simpleton-title:empty,
body.simpleton-radio-has-player .entry-title:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Pull the actual player app toward the header.
 * The masthead remains centered as the network identity above the ticker.
 */
body.simpleton-radio-has-player .bloks-player-app {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.simpleton-radio-has-player .lava-radio-masthead {
  width: min(calc(100% - 36px), 1100px);
  margin:
    clamp(38px, 4vw, 58px)
    auto
    clamp(18px, 2vw, 24px) !important;
  text-align: center !important;
}

body.simpleton-radio-has-player .lava-radio-masthead__eyebrow,
body.simpleton-radio-has-player .lava-radio-masthead__title,
body.simpleton-radio-has-player .lava-radio-masthead__tagline {
  text-align: center !important;
}

/* Keep masthead, ticker, and console visually connected. */
body.simpleton-radio-has-player .lava-radio-masthead::after {
  margin-left: auto;
  margin-right: auto;
}

body.simpleton-radio-has-player .bloks-radio-now-playing {
  margin-top: 0 !important;
}

/* Automatic station pages should not inherit article-level top padding. */
.single-bloks_radio_station .simpleton-entry,
.single-bloks_radio_station .simpleton-entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  body.simpleton-radio-has-player .lava-radio-masthead {
    margin-top: 26px !important;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.4
   TIGHTER VERTICAL RHYTHM
========================================= */

/*
 * Keep the useful horizontal breathing room between the visual and console,
 * but stop the application grid from adding large vertical gaps between
 * masthead, ticker, and player.
 */
body.simpleton-radio-has-player .bloks-player-app {
  column-gap: clamp(20px, 2vw, 34px) !important;
  row-gap: 12px !important;
}

/* Compact network ident. */
body.simpleton-radio-has-player .lava-radio-masthead {
  margin:
    clamp(18px, 2vw, 28px)
    auto
    6px !important;
}

body.simpleton-radio-has-player .lava-radio-masthead__eyebrow {
  margin-bottom: 4px;
}

body.simpleton-radio-has-player .lava-radio-masthead__title {
  font-size: clamp(28px, 3.5vw, 48px);
}

body.simpleton-radio-has-player .lava-radio-masthead__tagline {
  margin-top: 6px;
}

body.simpleton-radio-has-player .lava-radio-masthead::after {
  margin-top: 10px;
}

/* Ticker sits directly beneath the ident. */
body.simpleton-radio-has-player .bloks-radio-now-playing {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}

/* Remove any remaining top padding from the immediate page wrapper. */
body.simpleton-radio-has-player .simpleton-entry-content > .bloks-player-app {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Slightly compress the app's bottom padding so the page feels less stretched. */
body.simpleton-radio-has-player .bloks-player-app {
  padding-bottom: clamp(36px, 5vw, 72px);
}

@media (max-width: 700px) {
  body.simpleton-radio-has-player .bloks-player-app {
    row-gap: 10px !important;
  }

  body.simpleton-radio-has-player .lava-radio-masthead {
    margin-top: 14px !important;
    margin-bottom: 4px !important;
  }

  body.simpleton-radio-has-player .lava-radio-masthead::after {
    margin-top: 8px;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.5
   DEDICATED RADIO STATION TEMPLATE
========================================= */

.single-bloks_radio_station .lava-radio-station-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.single-bloks_radio_station .lava-radio-station-channel,
.single-bloks_radio_station .lava-radio-station-channel__content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.single-bloks_radio_station .lava-radio-station-channel__content > *:first-child {
  margin-top: 0;
}


/* =========================================
   SIMPLETON RADIO 0.3.6
   CONTROLLED STATION WIDTH + ABOUT SECTION
========================================= */

.single-bloks_radio_station .lava-radio-station-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(18px, 3vw, 42px) clamp(48px, 6vw, 88px);
}

.single-bloks_radio_station .lava-radio-station-channel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/*
 * Radio owns its own application width instead of inheriting the parent
 * theme's generic content width.
 */
.single-bloks_radio_station .lava-radio-station-shell,
.single-bloks_radio_station .lava-radio-station-about {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.single-bloks_radio_station .lava-radio-station-shell .bloks-player-app {
  width: 100%;
  max-width: none;
}

/* Station information comes after the listening experience. */
.lava-radio-station-about {
  margin-top: clamp(42px, 6vw, 78px);
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(86, 240, 255, .14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 0%, rgba(86, 240, 255, .06), transparent 34%),
    linear-gradient(180deg, rgba(9, 18, 43, .74), rgba(4, 9, 24, .88));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .02);
}

.lava-radio-station-about__kicker {
  margin: 0 0 8px;
  color: var(--radio-cyan, #56f0ff);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lava-radio-station-about h2 {
  margin: 0;
  color: #f5f8ff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.lava-radio-station-about__content {
  max-width: 900px;
  margin-top: 18px;
  color: rgba(218, 228, 246, .78);
  font-size: 16px;
  line-height: 1.8;
}

.lava-radio-station-about__content > :first-child {
  margin-top: 0;
}

.lava-radio-station-about__content > :last-child {
  margin-bottom: 0;
}

.lava-radio-station-about__actions {
  margin: 24px 0 0;
}

@media (max-width: 700px) {
  .single-bloks_radio_station .lava-radio-station-page {
    padding-inline: 12px;
  }

  .lava-radio-station-about {
    margin-top: 32px;
    padding: 20px;
    border-radius: 16px;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.7
   MOBILE MASTHEAD CLEARANCE
========================================= */

@media (max-width: 768px) {
  .lava-radio-masthead {
    position: relative;
    z-index: 1;
    padding-top: 42px;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .lava-radio-masthead h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }
}

@media (max-width: 480px) {
  .lava-radio-masthead {
    padding-top: 34px;
    margin-bottom: 20px;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.8
   ABOUT THIS STATION UNDER VISUALIZER
========================================= */

.single-bloks_radio_station
.bloks-shader-library-stage
.lava-radio-station-about--under-visualizer {
  width: 100%;
  max-width: none;
  margin: clamp(24px, 3vw, 38px) 0 0;
  padding: clamp(22px, 3vw, 34px);
  box-sizing: border-box;
}

.single-bloks_radio_station
.bloks-shader-library-stage
.lava-radio-station-about--under-visualizer
.lava-radio-station-about__content {
  max-width: none;
}

@media (max-width: 900px) {
  .single-bloks_radio_station
  .bloks-shader-library-stage
  .lava-radio-station-about--under-visualizer {
    margin-top: 22px;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.10
   INDEPENDENT PLAYER COLUMNS
========================================= */

/*
 * The About section remains beneath the visualizer in the left column.
 * The right-side controls/library panel scrolls independently, so a long
 * visual library no longer determines the height of the entire page row.
 */
.single-bloks_radio_station .bloks-shader-library {
  align-items: start;
}

.single-bloks_radio_station .bloks-shader-library-side {
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

/* Keep the left visualizer/About column in normal page flow. */
.single-bloks_radio_station .bloks-shader-library-stage {
  align-self: start;
  overflow: visible;
}

/* A subtle scrollbar treatment that stays out of the way. */
.single-bloks_radio_station .bloks-shader-library-side::-webkit-scrollbar {
  width: 10px;
}

.single-bloks_radio_station .bloks-shader-library-side::-webkit-scrollbar-track {
  background: rgba(4, 9, 24, .35);
}

.single-bloks_radio_station .bloks-shader-library-side::-webkit-scrollbar-thumb {
  background: rgba(86, 240, 255, .18);
  border: 2px solid rgba(4, 9, 24, .35);
  border-radius: 999px;
}

.single-bloks_radio_station .bloks-shader-library-side::-webkit-scrollbar-thumb:hover {
  background: rgba(86, 240, 255, .32);
}

@media (max-width: 900px) {
  /*
   * On stacked/mobile layouts, return to normal document scrolling.
   * Independent panel scrolling is only useful while the two-column layout exists.
   */
  .single-bloks_radio_station .bloks-shader-library-side {
    max-height: none;
    overflow-y: visible;
    scrollbar-gutter: auto;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.11
   RIGHT LIBRARY SCROLL FIX
========================================= */

/*
 * Keep the right-hand player/library column independently scrollable.
 * Some existing panel/layout rules apply overflow clipping lower in the tree,
 * so explicitly remove that clipping from the scroll path.
 */
.single-bloks_radio_station .bloks-shader-library {
  overflow: visible !important;
}

.single-bloks_radio_station .bloks-shader-library-side {
  min-height: 0;
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
}

.single-bloks_radio_station .bloks-shader-library-side > *,
.single-bloks_radio_station .bloks-shader-library-side .bloks-app-panel,
.single-bloks_radio_station .bloks-shader-library-side .bloks-shader-library-browser {
  overflow: visible;
}

/* Ensure the library list itself can extend naturally inside the scrolling panel. */
.single-bloks_radio_station .bloks-shader-library-list,
.single-bloks_radio_station .bloks-shader-library-groups,
.single-bloks_radio_station .bloks-shader-library-group {
  max-height: none !important;
  overflow: visible !important;
}

@media (max-width: 900px) {
  .single-bloks_radio_station .bloks-shader-library-side {
    height: auto;
    max-height: none;
    overflow: visible !important;
    scrollbar-gutter: auto;
  }
}


/* =========================================
   SIMPLETON RADIO 0.3.12
   MATCHED PLAYER COLUMN HEIGHTS
========================================= */

/*
 * Let the two-column player layout establish one shared row height.
 * The left side grows naturally with the visualizer + About section.
 * The right side stretches to match that height and scrolls internally.
 */
.single-bloks_radio_station .bloks-shader-library {
  align-items: stretch !important;
}

.single-bloks_radio_station .bloks-shader-library-stage {
  align-self: stretch;
}

.single-bloks_radio_station .bloks-shader-library-side {
  align-self: stretch;
  height: auto;
  max-height: none;
  min-height: 0;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

/*
 * Keep the right panel visually filling the matched column height.
 */
.single-bloks_radio_station .bloks-shader-library-side.bloks-app-panel {
  height: 100%;
}

@media (max-width: 900px) {
  .single-bloks_radio_station .bloks-shader-library {
    align-items: initial !important;
  }

  .single-bloks_radio_station .bloks-shader-library-stage,
  .single-bloks_radio_station .bloks-shader-library-side {
    align-self: auto;
    height: auto;
    max-height: none;
    overflow: visible !important;
  }
}
