@charset "UTF-8";

:root {
  --color-black: #050505;
  --color-black-soft: #0b0b0b;
  --color-charcoal: #111;
  --color-panel: #151515;
  --color-border: #2a2a2a;
  --color-white: #f2f2f2;
  --color-white-muted: #cfcfcf;
  --color-gray: #8a8a8a;
  --color-gray-dark: #4a4a4a;
  --color-red: #c1121f;
  --color-red-dark: #8f0d16;
  --color-red-bright: #e11926;
  --color-bronze: #8b6b3e;
  --color-silver: #a5a5a5;
  --color-gold: #c9a227;
  --color-bg: var(--color-black);
  --color-text: var(--color-white);
  --color-muted: var(--color-white-muted);
  --color-dim: var(--color-gray-dark);
  --color-accent: var(--color-red);
  --color-line: rgba(255, 255, 255, 0.16);
  --font-display: "Bebas Neue", "Anton", impact, sans-serif;
  --font-ui: "Oswald", "Arial Narrow", arial, sans-serif;
  --font-body: "IBM Plex Mono", "Courier New", monospace;
  --font-main: var(--font-body);
  --transition-fast: 160ms ease;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 28px;
  --font-size-2xl: 40px;
  --font-size-3xl: 64px;
  --font-size-4xl: 96px;
  --font-size-hero: clamp(72px, 10vw, 180px);
  --container: 1160px;
}

@media (max-width: 720px) {
  :root {
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-md: 15px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 36px;
    --font-size-3xl: 54px;
    --font-size-hero: clamp(52px, 18vw, 96px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.72)),
    url("../img/bg-tileable-subtle.png") top left / 768px 512px repeat,
    var(--color-bg);
  background-attachment: scroll;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  content: "";
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: fixed;
  z-index: 20;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 11px,
      rgba(255, 255, 255, 0.025) 12px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 6px,
      rgba(255, 255, 255, 0.018) 7px
    );
  mix-blend-mode: screen;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

p,
li {
  letter-spacing: -0.01em;
}

.site-header {
  align-items: center;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: clamp(18px, 2vw, 24px);
  grid-template-columns: clamp(154px, 12vw, 176px) 1fr auto;
  margin: 0 auto;
  max-width: none;
  padding: clamp(10px, 1vw, 14px)
    max(24px, calc((100vw - var(--container)) / 2));
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.skip-link {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  left: 18px;
  padding: 10px 14px;
  position: fixed;
  text-decoration: none;
  text-transform: uppercase;
  top: 14px;
  transform: translateY(-140%);
  transition: transform var(--transition-fast);
  z-index: 200;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-brand {
  display: inline-flex;
  text-decoration: none;
  width: clamp(154px, 12vw, 176px);
}

.site-brand img {
  display: block;
  height: auto;
  width: 100%;
}

.site-menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f2f2f2;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.site-menu-toggle span:not(.screen-reader-text) {
  background: currentcolor;
  display: block;
  height: 2px;
  left: 11px;
  position: absolute;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
  width: 20px;
}

.site-menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.site-menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav ul,
.site-nav .menu {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 48px);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #f4f4f4;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav .current-menu-item a,
.site-social a:hover,
.text-link:hover,
.all-news:hover {
  color: var(--color-accent);
}

.site-nav .current-menu-item a {
  position: relative;
}

.site-nav .current-menu-item a::after {
  background: var(--color-accent);
  bottom: -14px;
  content: "";
  height: 2px;
  left: -8px;
  position: absolute;
  right: -8px;
  transform: rotate(-2deg);
}

.site-social {
  align-items: center;
  display: flex;
  gap: 18px;
}

.site-social a {
  align-items: center;
  color: #f2f2f2;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  text-decoration: none;
  width: 24px;
}

.site-shop-actions {
  align-items: center;
  display: flex;
  gap: 18px;
}

.site-shop-actions > a,
.site-shop-search button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #f2f2f2;
  cursor: pointer;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 24px;
}

.site-shop-actions > a:hover,
.site-shop-search button:hover {
  color: var(--color-accent);
}

.site-shop-search {
  align-items: center;
  display: flex;
  position: relative;
}

.site-shop-search input[type="search"] {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: 12px;
  height: 32px;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition:
    opacity var(--transition-fast),
    width var(--transition-fast),
    padding var(--transition-fast);
  width: 0;
}

.site-shop-search:hover input[type="search"],
.site-shop-search:focus-within input[type="search"] {
  opacity: 1;
  padding: 0 38px 0 10px;
  pointer-events: auto;
  width: 190px;
}

.site-shop-search button {
  z-index: 1;
}

.site-cart-count {
  align-items: center;
  background: var(--color-accent);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  height: 15px;
  justify-content: center;
  min-width: 15px;
  position: absolute;
  right: -8px;
  top: -7px;
}

.social-icon {
  display: block;
  fill: currentcolor;
  flex: 0 0 auto;
  height: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 18px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.site-main {
  min-height: 70vh;
  overflow: hidden;
}

.hero {
  isolation: isolate;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-slides {
  min-height: inherit;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  min-height: inherit;
  padding: 132px 76px 100px;
  position: relative;
}

.hero-slide[hidden] {
  display: none;
}

.hero-side-label {
  color: #d8d8d8;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  left: 26px;
  letter-spacing: 8px;
  line-height: 1;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  white-space: nowrap;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  position: relative;
  transform: translateY(-28px);
  z-index: 2;
}

.hero-mark {
  color: #f4f4f4;
  display: inline-block;
  font-family: var(--font-ui);
  font-size: clamp(4.6rem, 10vw, 10.5rem);
  letter-spacing: 0;
  line-height: 0.78;
  margin: 0 0 38px;
  position: relative;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.hero h1,
.hero h2 {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hero-intro {
  color: #efefef;
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  line-height: 1.48;
  margin: 0 0 30px;
  max-width: 430px;
  text-transform: uppercase;
}

.hero-intro span,
.section-heading span,
.about-copy span,
.meta {
  color: var(--color-accent);
}

.rough-button {
  align-items: center;
  background-color: #f2f2f2;
  background-image:
    repeating-linear-gradient(22deg, rgba(5, 5, 5, 0.13) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(108deg, rgba(5, 5, 5, 0.08) 0 1px, transparent 1px 11px),
    radial-gradient(circle at 12% 84%, rgba(5, 5, 5, 0.2) 0 1px, transparent 1.6px),
    radial-gradient(circle at 82% 18%, rgba(5, 5, 5, 0.18) 0 1px, transparent 1.7px);
  border: 1px solid #050505;
  box-shadow: 3px 3px 0 #050505;
  color: #050505;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.18rem;
  gap: 34px;
  min-height: 54px;
  padding: 0 18px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-0.6deg);
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.rough-button::before,
.blog-card::after,
.episode-thumb::after,
.quote-panel::after {
  border: 2px solid rgba(255, 255, 255, 0.35);
  content: "";
  inset: -5px;
  pointer-events: none;
  position: absolute;
}

.rough-button::before {
  border-color: rgba(5, 5, 5, 0.72);
  border-width: 1px;
  inset: -5px 3px 4px -4px;
  transform: rotate(-1.4deg);
}

.rough-button:hover {
  background-color: var(--color-accent);
  box-shadow: 5px 5px 0 #050505;
  color: #fff;
  transform: translate(-1px, -2px) rotate(-0.6deg);
}

.rough-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 6px;
}

.rough-button strong {
  align-items: center;
  background: #050505;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  height: 28px;
  justify-content: center;
  line-height: 1;
  transform: translateY(1px);
  width: 28px;
}

.hero-clock {
  align-self: start;
  filter: grayscale(1) contrast(1.18);
  margin-top: 8px;
  max-width: 425px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-controls {
  bottom: 92px;
  display: flex;
  gap: 12px;
  position: absolute;
  right: 76px;
  z-index: 3;
}

.hero-arrow,
.section-arrows button {
  align-items: center;
  background-color: #ecebe7;
  background-image:
    repeating-linear-gradient(22deg, rgba(5, 5, 5, 0.13) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(108deg, rgba(5, 5, 5, 0.08) 0 1px, transparent 1px 11px),
    radial-gradient(circle at 12% 84%, rgba(5, 5, 5, 0.2) 0 1px, transparent 1.6px),
    radial-gradient(circle at 82% 18%, rgba(5, 5, 5, 0.18) 0 1px, transparent 1.7px);
  background-size: auto, auto, 13px 13px, 17px 17px;
  border: 2px solid #111;
  box-shadow:
    3px 2px 0 #f2f2f2,
    -3px -2px 0 #f2f2f2,
    5px 4px 0 -2px #111,
    -5px -3px 0 -2px #111;
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 1.7rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  line-height: 1;
  overflow: visible;
  position: relative;
  text-shadow: 0.5px 0 #050505, -0.5px 0 #050505;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
  width: 46px;
}

.hero-arrow::before,
.section-arrows button::before {
  border: 1px solid rgba(5, 5, 5, 0.72);
  content: "";
  inset: -6px 3px 4px -5px;
  pointer-events: none;
  position: absolute;
  transform: rotate(-1.6deg);
}

.hero-arrow:nth-child(even),
.section-arrows button:nth-child(even) {
  transform: rotate(1.2deg);
}

.hero-arrow:hover,
.section-arrows button:hover {
  background-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px) rotate(-1.2deg);
}

.hero-arrow:nth-child(even):hover,
.section-arrows button:nth-child(even):hover {
  transform: translateY(-2px) rotate(1.2deg);
}

.hero-arrow:focus-visible,
.section-arrows button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 6px;
}

.hero-pager {
  display: grid;
  gap: 10px;
  position: absolute;
  right: 28px;
  top: 365px;
  z-index: 3;
}

.hero-pager button {
  background: transparent;
  border: 0;
  color: #d9d9d9;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 2px 0;
  text-align: center;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.hero-pager button:hover,
.hero-pager .is-active {
  color: var(--color-accent);
  transform: translateX(-2px);
}

.hero-pager .is-active {
  font-size: 1.08rem;
}

.hero-pager::after {
  background: rgba(255, 255, 255, 0.55);
  content: "";
  height: 108px;
  justify-self: center;
  margin-top: 12px;
  width: 1px;
}

.content-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 auto;
  max-width: var(--container);
  padding: 58px 24px;
}

.section-heading {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-heading h2,
.about-copy h2 {
  color: #f1f1f1;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

.section-arrows {
  display: flex;
  gap: 12px;
}

.section-arrows button {
  flex: 0 0 46px;
}

.section-arrows button[hidden] {
  display: none;
}

.latest-grid {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
}

.latest-grid[hidden] {
  display: none;
}

.episode-thumb {
  aspect-ratio: 16 / 9;
  background: #111;
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.episode-thumb img {
  filter: grayscale(1) contrast(1.1);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.episode-thumb.is-playing {
  background: #000;
}

.latest-video-embed {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  min-height: 250px;
  position: absolute;
  width: 100%;
}

.play-button {
  align-items: center;
  background: var(--color-accent);
  border-radius: 50%;
  color: #050505;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  height: 54px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
}

.episode-copy {
  padding-right: 30px;
}

.meta {
  font-size: 0.88rem;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.meta a,
.episode-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.meta a:hover,
.episode-copy h3 a:hover {
  color: var(--color-accent);
}

.episode-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.episode-copy p:not(.meta),
.about-copy p {
  color: var(--color-muted);
  margin: 0 0 28px;
  max-width: 420px;
}

.text-link,
.all-news {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: #f4f4f4;
  display: inline-flex;
  font-size: 0.92rem;
  padding-bottom: 6px;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  background: var(--color-panel);
  min-height: 300px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.blog-card a {
  color: inherit;
  display: block;
  min-height: 300px;
  padding: 242px 18px 18px;
  position: relative;
  text-decoration: none;
}

.blog-card img {
  filter: grayscale(1) contrast(1.12);
  height: 220px;
  left: 0;
  margin: 0;
  object-fit: cover;
  opacity: 0.86;
  position: absolute;
  top: 0;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 220ms ease;
  width: 100%;
}

.blog-card time {
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  left: 0;
  margin: 0;
  padding: 7px 10px;
  position: absolute;
  top: 0;
  z-index: 2;
}

.blog-card h3 {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease;
  z-index: 1;
}

.blog-card::after {
  transition: border-color 180ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.blog-card:hover::after,
.blog-card:focus-within::after {
  border-color: rgba(220, 31, 38, 0.72);
}

.blog-card:hover img,
.blog-card:focus-within img {
  filter: grayscale(0.25) contrast(1.18);
  opacity: 1;
  transform: scale(1.035);
}

.blog-card:hover h3,
.blog-card:focus-within h3 {
  color: var(--color-accent);
}

.blog-card p {
  color: #c8c8c8;
  font-size: 0.84rem;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.about-section {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.2fr);
  padding-bottom: 72px;
}

.about-copy {
  padding-left: 6px;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.quote-panel {
  min-height: 190px;
  overflow: hidden;
  padding: 36px 38px;
  position: relative;
}

.quote-panel img {
  filter: grayscale(1) contrast(1.2);
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.58;
  position: absolute;
  width: 100%;
}

.quote-panel blockquote {
  color: #f2f2f2;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.08;
  margin: 0;
  max-width: 430px;
  position: relative;
  text-transform: uppercase;
}

.quote-panel blockquote::before {
  color: #fff;
  content: "\201C";
  display: block;
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 0.45;
  margin-bottom: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-muted);
  display: grid;
  gap: 48px;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  margin: 0 auto;
  max-width: var(--container);
  padding: 62px 24px 54px;
}

.site-footer .footer-heading {
  color: #f2f2f2;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.site-footer .footer-heading--legal {
  margin-top: 28px;
}

.site-footer a {
  color: var(--color-muted);
  display: block;
  font-size: 0.88rem;
  margin-bottom: 8px;
  text-decoration: none;
}

.site-footer span {
  color: var(--color-muted);
  display: block;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.site-footer .footer-credit-link {
  display: inline;
  font-size: inherit;
  margin: 0;
}

.site-footer .footer-credit-name {
  display: inline;
  font-size: inherit;
  margin: 0;
  white-space: nowrap;
}

.footer-social a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.footer-social a.footer-social-link-tiktok {
  display: flex;
  width: fit-content;
}

.footer-social .social-label {
  display: inline;
  margin: 0;
}

.info-hero {
  min-height: 430px;
  padding-top: 96px;
  position: relative;
}

.info-card::before {
  background:
    linear-gradient(rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.46)),
    url("../img/bg-tileable-subtle.png") center / 512px 341px repeat;
  content: "";
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  position: absolute;
}

.info-hero h1 {
  font-size: clamp(4.5rem, 12vw, 9rem);
  margin: 0 0 24px;
}

.info-lead {
  color: #ededed;
  font-size: clamp(1rem, 2vw, 1.32rem);
  max-width: 760px;
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.info-content {
  background: rgba(17, 17, 17, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  position: relative;
}

.info-card h2 {
  color: #fff;
  font-size: 1.85rem;
  margin: 0 0 16px;
  position: relative;
}

.info-card p,
.info-card a,
.info-content,
.info-empty {
  color: var(--color-muted);
  position: relative;
}

.info-card a {
  display: inline-flex;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  height: auto;
  margin-bottom: 16px;
  max-width: 218px;
  object-fit: contain;
  object-position: left center;
  width: min(100%, 218px);
}

.footer-brand p {
  font-size: 0.86rem;
  margin: 0;
}

.about-hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  isolation: isolate;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 760px;
  overflow: hidden;
  padding: 165px 70px 56px;
  position: relative;
}

.about-stats::before,
.about-authors::before,
.about-quote-band::before,
.about-author-card::after {
  background:
    repeating-linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 18px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.025) 15px
    );
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.25;
  pointer-events: none;
  position: absolute;
}

.about-hero-copy {
  align-self: center;
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.about-kicker {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.about-hero-page h1 {
  color: #f2f2f2;
  font-size: clamp(6rem, 13vw, 11.5rem);
  letter-spacing: 0;
  margin: 0 0 28px;
  max-width: 760px;
  position: relative;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.about-hero-page h1::after,
.about-section-title h2::after {
  background: var(--color-accent);
  bottom: -10px;
  content: "";
  height: 7px;
  left: 8px;
  position: absolute;
  transform: rotate(-3deg);
  width: 110px;
}

.about-lead {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 30px;
  max-width: 610px;
  text-transform: uppercase;
}

.about-mission {
  color: #d8d8d8;
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: 570px;
}

.about-mission p {
  margin: 0 0 10px;
}

.about-mission span,
.about-quote-band blockquote span {
  color: var(--color-red-bright);
}

.about-cta {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #f2f2f2;
  margin: 28px 0 0;
}

.about-cta strong {
  background: #f2f2f2;
  color: #050505;
}

.about-hero-clock {
  place-self: center end;
  filter: grayscale(1) contrast(1.22);
  max-width: 460px;
  mix-blend-mode: screen;
  position: relative;
  width: 100%;
  z-index: 1;
}

.about-red-mark {
  color: rgba(193, 18, 31, 0.78);
  font-family: var(--font-display);
  position: absolute;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.about-crown {
  font-size: 6rem;
  left: 280px;
  top: 165px;
}

.about-respect {
  bottom: 85px;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  right: 82px;
  z-index: 3;
}

.about-stats {
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -38px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.about-stats article {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 4px 14px;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  min-height: 92px;
  padding: 18px 22px;
}

.about-stats article:last-child {
  border-right: 0;
}

.about-stat-icon {
  align-items: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  position: relative;
  grid-row: 1 / span 2;
  width: 48px;
}

.about-stat-icon svg {
  fill: none;
  height: 25px;
  stroke: #f2f2f2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 25px;
}

.about-stats strong {
  color: #f2f2f2;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.88;
  grid-column: 2;
  text-transform: uppercase;
}

.about-stats p {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: 1rem;
  grid-column: 2;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.about-authors {
  padding-top: 58px;
  position: relative;
}

.about-section-title {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.about-section-title h2 {
  color: #f2f2f2;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  position: relative;
}

.about-section-title p {
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.2vw, 3.4rem);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.about-authors-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-author-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  min-height: 540px;
  overflow: hidden;
  padding: 0 0 20px;
  position: relative;
}

.about-author-card img {
  display: block;
  filter: grayscale(1) contrast(1.18);
  height: auto;
  margin: 0;
  width: 100%;
}

.about-author-name {
  background: rgba(193, 18, 31, 0.88);
  margin: -3px 6px 22px;
  padding: 7px 12px 9px;
  position: relative;
  z-index: 1;
}

.about-author-name h3 {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.1;
  margin: 0 0 3px;
}

.about-author-name a {
  color: inherit;
  text-decoration: none;
}

.about-author-name a:hover {
  color: rgba(255, 255, 255, 0.76);
}

.about-author-name strong {
  color: #f2f2f2;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.about-author-card p {
  color: #d7d7d7;
  font-size: 0.78rem;
  line-height: 1.75;
  margin: 0 18px 16px;
}

.about-author-card .about-author-role {
  color: #f2f2f2;
  font-weight: 700;
}

.about-author-socials {
  margin: 14px 18px 0;
}

.about-author-social {
  align-items: center;
  color: #f2f2f2;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-author-social .social-icon {
  height: 18px;
  width: 18px;
}

.about-author-social:hover {
  color: var(--color-accent);
}

.about-author-profile-link {
  margin: 8px 18px 42px;
}

.about-quote-band {
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 56px;
  min-height: 155px;
  overflow: hidden;
  padding: 36px 58px;
  position: relative;
}

.about-quote-band img {
  filter: grayscale(1) contrast(1.2);
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.62;
  position: absolute;
  width: 100%;
}

.about-quote-band blockquote {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.22;
  margin: 0 0 0 155px;
  max-width: 760px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.about-quote-band blockquote::before,
.about-quote-band blockquote::after {
  color: rgba(193, 18, 31, 0.8);
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 8rem;
  left: -135px;
  line-height: 0.8;
  position: absolute;
  top: -8px;
}

.about-quote-band blockquote::after {
  inset: auto -85px -90px auto;
  content: "\201D";
}

.post-card,
.content-wrap {
  margin: 0 auto;
  max-width: 860px;
  padding: 140px 24px 70px;
}

.episodes-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 340px;
  overflow: hidden;
  padding: 104px 64px 54px;
  position: relative;
}

.episodes-hero-copy {
  align-self: end;
  max-width: 720px;
}

.episodes-hero h1 {
  color: #f3f3f3;
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 13vw, 8.8rem);
  letter-spacing: 0;
  line-height: 0.85;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.episodes-hero p {
  color: #dedede;
  font-size: clamp(0.96rem, 1.5vw, 1.12rem);
  margin: 0;
  max-width: 560px;
}

.episodes-clock {
  place-self: center end;
  filter: grayscale(1) contrast(1.2);
  max-width: 300px;
  mix-blend-mode: screen;
  width: 100%;
}

.episodes-page {
  padding-top: 18px;
}

.episodes-toolbar {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 350px);
  margin-bottom: 28px;
}

.episode-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.episode-filters a,
.episode-pagination a,
.episode-pagination span {
  align-items: center;
  border: 1px solid var(--color-line);
  color: #f4f4f4;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 11px 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.episode-filters a:hover,
.episode-filters .is-active,
.episode-pagination a:hover,
.episode-pagination .is-active,
.episode-pagination .current {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.episode-search {
  align-items: center;
  border: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: 1fr 44px;
  min-height: 48px;
}

.episode-search input {
  background: transparent;
  border: 0;
  color: #f2f2f2;
  font: inherit;
  min-width: 0;
  outline: 0;
  padding: 0 18px;
}

.episode-search input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.episode-search button {
  background: transparent;
  border: 0;
  color: #f2f2f2;
  cursor: pointer;
  font-size: 1.65rem;
  height: 100%;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.episodes-layout {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 350px);
}

.episodes-list {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 14px;
}

.episode-row {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 24px;
  grid-template-columns: 72px 290px minmax(0, 1fr);
  padding: 16px 0;
}

.episode-row:last-of-type {
  border-bottom: 0;
}

.episode-number strong {
  color: #f2f2f2;
  display: block;
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 0.9;
}

.episode-number span {
  color: var(--color-accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.episode-row-image {
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.episode-row-image::after,
.sidebar-panel::after,
.featured-episode-image::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.episode-row-image img,
.featured-episode-image img {
  filter: grayscale(1) contrast(1.15);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.episode-row-copy h2 {
  color: #f2f2f2;
  font-size: clamp(1.26rem, 2.25vw, 1.62rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.episode-row-copy h2 a {
  text-decoration: none;
}

.episode-row-copy h2 a:hover {
  color: var(--color-accent);
}

.episode-row-copy p {
  color: var(--color-muted);
  font-size: 0.88rem;
  margin: 0 0 14px;
}

.episode-meta {
  color: #bdbdbd;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  gap: 16px;
}

.episodes-sidebar {
  display: grid;
  gap: 24px;
}

.sidebar-panel {
  border: 1px solid var(--color-line);
  padding: 24px;
  position: relative;
}

.sidebar-panel h2 {
  color: #f2f2f2;
  font-size: 1.32rem;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 8px;
  position: relative;
  text-transform: uppercase;
}

.featured-episode-image {
  aspect-ratio: 16 / 9;
  display: block;
  margin-bottom: 22px;
  min-height: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.featured-episode-image strong {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 18px;
}

.featured-episode h3 {
  color: #f2f2f2;
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.stats-panel dl {
  margin: 0;
}

.stats-panel div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: clamp(16px, 5vw, 28px);
  grid-template-columns: minmax(90px, max-content) minmax(0, 1fr);
  padding: 14px 0;
}

.stats-panel div:last-child {
  border-bottom: 0;
}

.stats-panel dt {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.stats-panel dd {
  color: #d2d2d2;
  font-size: 0.8rem;
  margin: 0;
  min-width: 0;
  text-transform: uppercase;
}

.categories-panel a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #d2d2d2;
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
  padding: 9px 0;
  text-decoration: none;
}

.categories-panel a:hover,
.categories-panel .is-active,
.categories-panel strong {
  color: var(--color-accent);
}

.episodes-active-filter {
  align-items: center;
  border: 1px solid var(--color-line);
  color: #d8d8d8;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.84rem;
  gap: 16px;
  justify-content: space-between;
  margin: -6px 0 28px;
  padding: 12px 16px;
  text-transform: uppercase;
}

.episodes-active-filter a,
.episodes-empty a {
  color: #f2f2f2;
}

.episodes-empty {
  padding: 34px 18px;
}

.episodes-empty h2 {
  color: #f2f2f2;
  font-size: 1.4rem;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.episodes-empty p {
  color: var(--color-muted);
  margin: 0 0 20px;
}

.episode-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0 18px;
}

.episode-pagination .next {
  padding-left: 18px;
  padding-right: 18px;
}

.single-episode {
  padding-top: 24px;
}

.episode-breadcrumb {
  color: #bcbcbc;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  gap: 12px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.episode-breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}

.single-episode-hero {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  margin-bottom: 34px;
}

.episode-player-frame {
  align-items: center;
  background: #090909;
  border: 1px solid var(--color-line);
  display: flex;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.episode-player-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  inset: 12px;
  content: "";
  pointer-events: none;
  position: absolute;
}

.episode-player-frame img {
  filter: grayscale(1) contrast(1.18);
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  width: 100%;
}

.episode-player-number {
  color: rgba(0, 0, 0, 0.82);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  left: 28px;
  line-height: 1;
  position: absolute;
  top: 30px;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.36);
}

.episode-player-play {
  align-items: center;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  height: 92px;
  justify-content: center;
  left: 50%;
  padding-left: 7px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
}

.single-episode-header {
  padding-top: 8px;
}

.episode-label {
  background: var(--color-accent);
  color: #f7f7f7;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0 0 18px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.single-episode-header h1 {
  color: #f2f2f2;
  font-size: clamp(2.4rem, 5vw, 4.15rem);
  line-height: 1.04;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.single-episode-meta {
  color: #d0d0d0;
  display: grid;
  font-size: 0.88rem;
  gap: 12px;
  margin-bottom: 28px;
}

.episode-meta-item {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  width: fit-content;
}

.episode-meta-item svg {
  flex: 0 0 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 16px;
}

.single-watch-link {
  margin: 0 0 28px;
}

.episode-share {
  align-items: center;
  color: #d8d8d8;
  display: flex;
  gap: 18px;
  text-transform: uppercase;
}

.episode-share a {
  align-items: center;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  min-height: 34px;
  min-width: 34px;
  justify-content: center;
  text-decoration: none;
}

.episode-share .social-icon {
  display: block;
  height: 20px;
  width: 20px;
}

.episode-share a:hover {
  color: var(--color-accent);
}

.single-episode-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 350px);
  margin-bottom: 48px;
}

.episode-detail-main {
  min-width: 0;
}

.single-episode-tabs {
  border-bottom: 1px solid var(--color-line);
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 30px;
}

.single-episode-tabs a {
  color: #f2f2f2;
  font-size: 1.12rem;
  padding: 0 0 12px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.single-episode-tabs a:hover,
.single-episode-tabs a:first-child {
  color: var(--color-accent);
}

.single-episode-tabs a:first-child::after,
.episode-detail-section h2::after,
.sidebar-panel h2::after {
  background: var(--color-accent);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: rotate(-2deg);
  width: 72px;
}

.episode-detail-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.episode-detail-section h2 {
  color: #f2f2f2;
  font-size: 1.45rem;
  margin: 0 0 22px;
  padding-bottom: 8px;
  position: relative;
  text-transform: uppercase;
}

.episode-content {
  color: #d5d5d5;
  max-width: 760px;
}

.episode-content p {
  margin: 0 0 18px;
}

.episode-transcript-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.episode-transcript-list li {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: 86px 1fr;
  padding: 11px 0;
}

.episode-transcript-list span {
  color: var(--color-accent);
  font-weight: 800;
}

.episode-transcript-list strong {
  color: #dcdcdc;
  font-size: 0.88rem;
}

.episode-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.episode-topic-list li {
  border: 1px solid var(--color-line);
  color: #f2f2f2;
  padding: 9px 12px;
  text-transform: uppercase;
}

.single-episode-sidebar {
  display: grid;
  gap: 24px;
}

.guest-panel img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.15);
  height: 210px;
  margin: 0 auto 18px;
  object-fit: cover;
  width: 210px;
}

.guest-panel h3 {
  color: #f2f2f2;
  font-size: 1.85rem;
  line-height: 1.05;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.guest-panel .meta {
  margin: 6px 0 16px;
  text-align: center;
  text-transform: uppercase;
}

.guest-panel p:not(.meta) {
  color: var(--color-muted);
  font-size: 0.88rem;
  margin: 0;
}

.downloads-panel a {
  border: 1px solid var(--color-line);
  display: block;
  margin-top: 12px;
  padding: 13px 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.downloads-panel a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.episode-quote-panel blockquote {
  color: #d8d8d8;
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.episode-quote-panel blockquote::before {
  color: var(--color-accent);
  content: "\201C";
  display: block;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
}

.episode-quote-panel cite {
  color: var(--color-accent);
  font-style: normal;
  text-transform: uppercase;
}

.related-episodes {
  margin-top: 16px;
}

.related-episodes-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-episode-card a {
  border: 1px solid var(--color-line);
  display: block;
  min-height: 100%;
  padding: 12px;
  position: relative;
  text-decoration: none;
}

.related-episode-card img {
  aspect-ratio: 16 / 9;
  filter: grayscale(1) contrast(1.16);
  object-fit: cover;
  width: 100%;
}

.related-episode-card span {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 2.8rem;
  left: 22px;
  line-height: 1;
  position: absolute;
  top: 22px;
}

.related-episode-card h3 {
  color: #f2f2f2;
  font-size: 1rem;
  line-height: 1.25;
  margin: 14px 0 10px;
  text-transform: uppercase;
}

.related-episode-card p {
  color: #bdbdbd;
  font-size: 0.75rem;
  margin: 0;
}

.related-episode-card a:hover {
  border-color: var(--color-accent);
}

.guest-panel-link,
.guest-profile-link {
  display: block;
  text-decoration: none;
}

.guest-profile-link {
  margin-top: 18px;
}

.single-guest {
  overflow: hidden;
}

.guest-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 440px;
  overflow: hidden;
  padding: 24px 64px 62px;
  position: relative;
}

.guest-hero-copy {
  align-self: start;
  position: relative;
  z-index: 2;
}

.guest-back-link {
  border: 1px solid var(--color-line);
  display: inline-flex;
  font-size: 0.75rem;
  margin-bottom: 32px;
  padding: 8px 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.guest-back-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.guest-hero h1 {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8.6rem);
  letter-spacing: 0;
  line-height: 0.82;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.guest-role {
  color: #f2f2f2;
  font-size: 1.12rem;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.guest-facts {
  display: grid;
  gap: 16px 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  max-width: 620px;
}

.guest-facts div {
  display: grid;
  gap: 4px;
}

.guest-facts dt {
  color: var(--color-accent);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.guest-facts dd {
  color: #f0f0f0;
  font-size: 0.86rem;
  margin: 0;
}

.guest-hero-image {
  place-self: start center;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: min(100%, 520px);
}

.guest-hero-image img {
  display: block;
  filter: grayscale(1) contrast(1.18);
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.guest-body {
  padding-top: 0;
}

.guest-main-grid {
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  margin-bottom: 30px;
}

.guest-bio-block {
  border-right: 1px solid var(--color-line);
  padding: 32px 44px 34px 0;
}

.guest-bio-block h2,
.guest-gallery h2 {
  color: #f2f2f2;
  font-size: 1.45rem;
  margin: 0 0 22px;
  padding-bottom: 8px;
  position: relative;
  text-transform: uppercase;
}

.guest-bio-block h2::after,
.guest-gallery h2::after {
  background: var(--color-accent);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: rotate(-2deg);
  width: 74px;
}

.guest-main-quote {
  color: #f2f2f2;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 42px 0 0;
  max-width: 480px;
}

.guest-main-quote::before {
  color: var(--color-accent);
  content: "\201C";
  display: block;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.65;
}

.guest-episode-panel {
  border-left: 0;
  border-top: 0;
  min-width: 0;
  overflow: hidden;
  padding: 32px 34px 34px;
}

.guest-episode-list {
  display: grid;
  gap: 22px;
}

.guest-related-episode {
  border: 1px solid var(--color-line);
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 14px;
}

.guest-related-episode-copy {
  min-width: 0;
}

.guest-featured-episode-image {
  aspect-ratio: 16 / 9;
  background: #101010;
  border: 1px solid var(--color-line);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.guest-featured-episode-image img {
  filter: grayscale(1) contrast(1.18);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.guest-featured-episode-image span {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 12px;
}

.guest-featured-episode-image strong {
  align-items: center;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  font-family: Arial, sans-serif;
  height: 62px;
  justify-content: center;
  left: 50%;
  padding-left: 4px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
}

.guest-episode-panel h3 {
  font-size: 1.45rem;
  line-height: 1.18;
  margin: 0 0 14px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.guest-episode-panel h3 a {
  text-decoration: none;
}

.guest-watch-link {
  margin: 22px 0 0;
  max-width: 100%;
}

.guest-all-episodes-row {
  border-top: 1px solid var(--color-line);
  margin-top: 22px;
  padding-top: 18px;
}

.guest-gallery {
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
  padding: 24px;
}

.guest-gallery .section-heading {
  margin-bottom: 14px;
}

.guest-gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.guest-gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
}

.guest-gallery-grid img {
  aspect-ratio: 1.55 / 1;
  filter: grayscale(1) contrast(1.18);
  height: 100%;
  object-fit: cover;
  transition:
    filter var(--transition-fast),
    transform var(--transition-fast);
  width: 100%;
}

.guest-gallery-item:hover img {
  filter: grayscale(0.25) contrast(1.18);
  transform: scale(1.04);
}

@media (max-width: 680px) {
  .guest-gallery-grid {
    display: flex;
    gap: 12px;
    margin-right: -24px;
    overflow-x: auto;
    padding-right: 24px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .guest-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .guest-gallery-item {
    aspect-ratio: 4 / 3;
    flex: 0 0 min(82vw, 420px);
    scroll-snap-align: start;
  }

  .guest-gallery-grid img {
    aspect-ratio: auto;
  }
}

.guest-stats-strip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 42px;
}

.guest-stats-strip > div {
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  min-height: 150px;
  padding: 22px;
  text-align: center;
}

.guest-stats-strip > div:last-child {
  border-right: 0;
}

.guest-stats-strip strong {
  color: #f2f2f2;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.guest-stats-strip span {
  color: #d8d8d8;
  display: block;
  font-size: 0.78rem;
  margin-top: 8px;
  text-transform: uppercase;
}

.guest-social-list {
  gap: 10px;
  text-align: left !important;
}

.guest-social-list strong {
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.guest-social-item {
  align-items: center;
  color: #d8d8d8;
  display: inline-flex !important;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 8px !important;
  max-width: 100%;
  min-width: 0;
  text-decoration: none;
  text-transform: none !important;
}

.guest-social-item .social-icon {
  color: #f2f2f2;
  height: 18px;
  width: 18px;
}

.guest-social-item span {
  margin-top: 0;
  overflow-wrap: anywhere;
  text-transform: none;
}

a.guest-social-item:hover {
  color: var(--color-accent);
}

.guest-bottom-quote {
  padding: 34px 20px 0;
  text-align: center;
}

.guest-bottom-quote blockquote {
  color: #f2f2f2;
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 auto;
  max-width: 780px;
  text-transform: uppercase;
}

.guests-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  margin: 0 auto;
  max-width: 1320px;
  min-height: 500px;
  overflow: hidden;
  padding: 150px 64px 62px;
  position: relative;
}

.guests-hero-copy {
  align-self: end;
  max-width: 740px;
}

.guests-hero h1 {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: clamp(5.8rem, 15vw, 9.6rem);
  letter-spacing: 0;
  line-height: 0.85;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.guests-kicker {
  color: #f2f2f2 !important;
  font-size: 1.08rem !important;
  margin-bottom: 44px !important;
  padding-bottom: 18px;
  position: relative;
  text-transform: uppercase;
}

.guests-kicker::after {
  background: rgba(255, 255, 255, 0.42);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 150px;
}

.guests-hero p {
  color: #dedede;
  font-size: 0.95rem;
  margin: 0;
  max-width: 560px;
}

.guests-hero-clock {
  place-self: center center;
  filter: grayscale(1) contrast(1.24);
  max-width: 350px;
  mix-blend-mode: screen;
  opacity: 0.9;
  width: 100%;
}

.guests-archive {
  padding-top: 14px;
}

.guests-toolbar {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 26px;
}

.guests-toolbar h2 {
  color: #f2f2f2;
  font-size: 1.05rem;
  margin: 0;
  text-transform: uppercase;
}

.guests-toolbar h2::first-letter,
.guests-toolbar h2 span {
  color: var(--color-accent);
}

.guests-sort {
  align-items: center;
  display: flex;
  gap: 10px;
}

.guests-sort label {
  color: #cfcfcf;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.guests-sort select {
  appearance: none;
  background: #070707;
  border: 1px solid var(--color-line);
  color: #f2f2f2;
  font: inherit;
  min-height: 38px;
  padding: 0 42px 0 12px;
  text-transform: uppercase;
}

.guests-sort button {
  background: var(--color-accent);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
  text-transform: uppercase;
}

.guests-letter-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.guests-letter-filter a {
  align-items: center;
  border: 1px solid var(--color-line);
  color: #f2f2f2;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  padding: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.guests-letter-filter a:hover,
.guests-letter-filter .is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.guests-archive-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
}

.guests-listing {
  min-width: 0;
}

.guests-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guest-card a {
  background: rgba(6, 6, 6, 0.74);
  border: 1px solid var(--color-line);
  display: block;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
}

.guest-card img {
  aspect-ratio: 0.94 / 1;
  filter: grayscale(1) contrast(1.18);
  object-fit: cover;
  width: 100%;
}

.guest-card h2 {
  color: #f2f2f2;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1;
  margin: 18px 14px 4px;
  text-transform: uppercase;
}

.guest-card p {
  color: #d8d8d8;
  font-size: 0.78rem;
  margin: 0 14px 14px;
  text-transform: uppercase;
}

.guest-card strong {
  color: #f2f2f2;
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  margin: 0 14px 18px;
}

.guest-card a:hover {
  border-color: var(--color-accent);
}

.guest-card a:hover strong,
.guest-card a:hover h2 {
  color: var(--color-accent);
}

.guests-sidebar {
  display: grid;
  gap: 24px;
}

.guests-about-panel p,
.featured-guest-panel p {
  color: var(--color-muted);
  font-size: 0.88rem;
  margin: 0 0 16px;
}

.guests-filter-panel a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #d2d2d2;
  display: flex;
  font-size: 0.88rem;
  justify-content: space-between;
  padding: 9px 0;
  text-decoration: none;
}

.guests-filter-panel a:hover,
.guests-filter-panel .is-active,
.guests-filter-panel strong {
  color: var(--color-accent);
}

.featured-guest-image {
  display: block;
  float: right;
  margin: 0 0 12px 16px;
  max-width: 145px;
  text-decoration: none;
}

.featured-guest-image img {
  aspect-ratio: 0.8 / 1;
  filter: grayscale(1) contrast(1.15);
  object-fit: cover;
  width: 100%;
}

.featured-guest-panel h3 {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 0.95;
  margin: 8px 0;
  text-transform: uppercase;
}

.featured-guest-role {
  color: #f2f2f2 !important;
  margin-bottom: 18px !important;
  text-transform: uppercase;
}

.guests-pagination {
  padding-top: 26px;
}

.sponsor-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  isolation: isolate;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 640px;
  overflow: hidden;
  padding: 130px 58px 48px;
  position: relative;
}

.sponsor-package::after,
.sponsor-contact::after {
  background:
    repeating-linear-gradient(
      103deg,
      rgba(255, 255, 255, 0.055) 0 1px,
      transparent 1px 18px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 12px,
      rgba(255, 255, 255, 0.025) 13px
    );
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
}

.sponsor-hero-copy {
  align-self: center;
  max-width: 590px;
  position: relative;
  z-index: 2;
}

.sponsor-eyebrow {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.sponsor-hero h1 {
  color: #f2f2f2;
  font-size: clamp(5.4rem, 11vw, 9.4rem);
  letter-spacing: 0;
  margin: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
}

.red-brush {
  background: var(--color-accent);
  display: block;
  height: 7px;
  margin: 10px 0 34px;
  max-width: 360px;
  transform: rotate(-2deg);
  width: 72%;
}

.sponsor-lead {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.28;
  margin: 0 0 22px;
  max-width: 390px;
  text-transform: uppercase;
}

.sponsor-intro {
  color: #d7d7d7;
  font-size: 0.9rem;
  line-height: 1.82;
  margin-bottom: 18px;
  max-width: 500px;
}

.sponsor-intro p,
.sponsor-proof-copy p,
.sponsor-contact p {
  margin: 0 0 10px;
}

.sponsor-red-line,
.sponsor-contact h2 span {
  color: var(--color-red-bright);
}

.sponsor-red-line {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 32px;
}

.sponsor-outline-button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #f2f2f2;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  gap: 28px;
  justify-content: space-between;
  min-height: 58px;
  min-width: 305px;
  padding: 0 22px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.sponsor-outline-button::after {
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
  inset: -5px;
  pointer-events: none;
  position: absolute;
}

.sponsor-outline-button:hover,
.sponsor-package a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.sponsor-outline-button strong,
.sponsor-package a strong {
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-4px);
}

.sponsor-hero-art {
  align-self: center;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.sponsor-hero-art img {
  filter: grayscale(1) contrast(1.22);
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  opacity: 0.9;
  width: 100%;
}

.sponsor-hero-art span {
  bottom: 54px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  position: absolute;
  right: 0;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.sponsor-hero-art strong {
  bottom: 8px;
  color: rgba(193, 18, 31, 0.82);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
  position: absolute;
  right: 4px;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.sponsor-proof {
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.6fr);
  padding-bottom: 34px;
  padding-top: 34px;
}

.sponsor-proof-copy {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-right: 34px;
}

.sponsor-proof-copy h2,
.sponsor-section-heading h2,
.sponsor-partners h2,
.sponsor-contact h2 {
  color: #f2f2f2;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1;
  margin: 0;
}

.sponsor-proof-copy .red-brush,
.sponsor-partners .red-brush {
  margin: 8px 0 24px;
  max-width: 118px;
}

.sponsor-proof-copy p {
  color: #d8d8d8;
  font-size: 0.86rem;
}

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

.sponsor-stat-grid article {
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  min-height: 170px;
  padding: 18px 22px;
  text-align: center;
}

.sponsor-stat-grid article:last-child {
  border-right: 0;
}

.sponsor-stat-icon {
  align-items: center;
  color: var(--color-accent);
  display: flex;
  height: 48px;
  justify-content: center;
  margin: 0 auto 18px;
  width: 48px;
}

.sponsor-stat-icon svg {
  display: block;
  height: 42px;
  width: 42px;
}

.sponsor-icon-eye {
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  transform: scaleX(1.55);
}

.sponsor-icon-eye::after {
  background: var(--color-accent);
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scaleX(0.65);
  width: 12px;
}

.sponsor-icon-mic {
  border: 2px solid var(--color-accent);
  border-radius: 18px;
  height: 34px;
  width: 22px;
}

.sponsor-icon-mic::before {
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 0 18px 18px;
  content: "";
  height: 18px;
  left: -8px;
  position: absolute;
  top: 16px;
  width: 34px;
}

.sponsor-icon-calendar {
  border: 2px solid var(--color-accent);
  height: 34px;
  width: 36px;
}

.sponsor-icon-calendar::before,
.sponsor-icon-calendar::after {
  background: var(--color-accent);
  content: "";
  height: 8px;
  position: absolute;
  top: -6px;
  width: 3px;
}

.sponsor-icon-calendar::before {
  left: 8px;
}

.sponsor-icon-calendar::after {
  right: 8px;
}

.sponsor-icon-groups::before,
.sponsor-icon-groups::after {
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  content: "";
  height: 13px;
  position: absolute;
  top: 0;
  width: 13px;
}

.sponsor-icon-groups::before {
  left: 7px;
}

.sponsor-icon-groups::after {
  right: 7px;
}

.sponsor-icon-groups {
  border: 2px solid var(--color-accent);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  height: 14px;
  left: 7px;
  position: absolute;
  top: 22px;
  width: 34px;
}

.sponsor-icon-person::before {
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 13px;
}

.sponsor-icon-person::after {
  border: 2px solid var(--color-accent);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  content: "";
  height: 15px;
  left: 50%;
  position: absolute;
  top: 21px;
  transform: translateX(-50%);
  width: 30px;
}

.sponsor-stat-grid strong {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.85;
}

.sponsor-stat-grid p {
  color: #d8d8d8;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  line-height: 1.25;
  margin: 8px auto 0;
  max-width: 120px;
  text-transform: uppercase;
}

.sponsor-section-heading {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.sponsor-section-heading h2 {
  position: relative;
}

.sponsor-section-heading h2::after {
  background: var(--color-accent);
  bottom: -10px;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  transform: rotate(-3deg);
  width: 104px;
}

.sponsor-section-heading p {
  color: #d8d8d8;
  font-size: 0.82rem;
  margin: 0;
}

.sponsor-package-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sponsor-package {
  border: 1px solid rgba(255, 255, 255, 0.32);
  min-height: 370px;
  padding: 28px 34px 32px;
  position: relative;
}

.sponsor-package h3 {
  color: #f2f2f2;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
  margin: 0 0 20px;
  text-align: center;
}

.sponsor-package-badge {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  margin: 0 0 26px;
  padding: 9px 14px;
  text-align: center;
  text-transform: uppercase;
}

.sponsor-package-bronze .sponsor-package-badge,
.sponsor-package-bronze a {
  background: rgba(139, 107, 62, 0.86);
}

.sponsor-package-silver .sponsor-package-badge,
.sponsor-package-silver a {
  background: rgba(165, 165, 165, 0.62);
}

.sponsor-package-gold .sponsor-package-badge,
.sponsor-package-gold a {
  background: rgba(141, 112, 32, 0.9);
}

.sponsor-package ul {
  color: #dedede;
  font-size: 0.8rem;
  line-height: 1.8;
  margin: 0 0 30px;
  padding-left: 18px;
}

.sponsor-package a {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  gap: 18px;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
  text-transform: uppercase;
}

.sponsor-partners {
  padding-bottom: 38px;
  padding-top: 38px;
}

.sponsor-partner-strip {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 10px 0 18px;
}

.sponsor-partner-strip a {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: center;
  min-height: 64px;
  padding: 8px 18px;
  text-decoration: none;
}

.sponsor-partner-strip a:last-child {
  border-right: 0;
}

.sponsor-partner-strip img {
  filter: grayscale(1) contrast(1.15);
  max-height: 54px;
  object-fit: contain;
}

.sponsor-partner-strip strong {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.sponsor-partners > p {
  color: #bdbdbd;
  font-size: 0.8rem;
  margin: 18px 0 0;
  text-align: center;
}

.sponsor-contact {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(170px, 250px) minmax(0, 1fr) minmax(
      250px,
      320px
    );
  margin-bottom: 56px;
  padding: 20px 42px 20px 18px;
  position: relative;
}

.sponsor-contact img {
  filter: grayscale(1) contrast(1.2);
  height: 155px;
  object-fit: cover;
  width: 100%;
}

.sponsor-contact h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.45rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.sponsor-contact h2::first-line {
  color: #f2f2f2;
}

.sponsor-contact p {
  color: #d8d8d8;
  font-size: 0.8rem;
}

.sponsor-contact-actions {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.sponsor-contact-actions .sponsor-outline-button {
  min-width: 250px;
}

.sponsor-contact-actions a:not(.sponsor-outline-button) {
  color: var(--color-red-bright);
  text-decoration: none;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  isolation: isolate;
  margin: 0 auto;
  max-width: 1160px;
  min-height: 470px;
  overflow: hidden;
  padding: 52px 24px 26px;
  position: relative;
}

.contact-hero-copy {
  align-self: center;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  color: #f2f2f2;
  font-size: clamp(5.6rem, 12vw, 9.6rem);
  letter-spacing: 0;
  margin: 0;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
}

.contact-hero .red-brush {
  margin: 8px 0 28px;
  max-width: 340px;
}

.contact-lead {
  color: #f2f2f2;
  font-family: var(--font-ui);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.contact-intro {
  color: #d9d9d9;
  font-size: 0.9rem;
  line-height: 1.72;
  max-width: 530px;
}

.contact-intro p {
  margin: 0 0 8px;
}

.contact-red-line {
  color: var(--color-red-bright);
  font-weight: 700;
}

.contact-hero-art {
  align-self: center;
  min-height: 390px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.contact-hero-art::after {
  color: rgba(193, 18, 31, 0.6);
  content: "WAKE UP!";
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  top: 18px;
  transform: rotate(-10deg);
}

.contact-hero-art img {
  filter: grayscale(1) contrast(1.24);
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  opacity: 0.96;
  width: 100%;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.88fr);
  margin-bottom: 24px;
  padding: 0;
}

.contact-form-wrap,
.contact-methods,
.contact-media {
  position: relative;
}

.contact-form-wrap {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 30px 34px 38px;
}

.contact-form-wrap h2,
.contact-methods h2,
.contact-media h2,
.contact-sponsor-copy h2 {
  color: #f2f2f2;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-form label {
  display: block;
}

.contact-form label > span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  appearance: none;
  background: rgba(5, 5, 5, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: #f2f2f2;
  font-family: var(--font-body);
  font-size: 0.78rem;
  min-height: 52px;
  padding: 0 16px;
  width: 100%;
}

.contact-form textarea {
  min-height: 132px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, #f2f2f2 50%),
    linear-gradient(135deg, #f2f2f2 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 22px,
    calc(100% - 16px) 22px;
  background-repeat: no-repeat;
  background-size:
    8px 8px,
    8px 8px;
  color: #d8d8d8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #d8d8d8;
  opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(225, 25, 38, 0.8);
  outline: 0;
}

.contact-captcha-row {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr) 52px;
}

.contact-captcha-code {
  align-items: center;
  background:
    linear-gradient(rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.38)),
    url("../img/contact-captcha-reference.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f2f2f2;
  display: flex;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 52px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

.contact-honeypot {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.contact-refresh {
  align-items: center;
  background: rgba(5, 5, 5, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f2f2f2;
  cursor: pointer;
  display: flex;
  font-size: 1.45rem;
  justify-content: center;
  min-height: 52px;
}

.contact-form-status {
  color: #d8d8d8;
  font-size: 0.78rem;
  margin: -6px 0 0;
  min-height: 1.2em;
}

.contact-submit {
  align-items: center;
  background: var(--color-red);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  gap: 34px;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 24px;
  text-transform: uppercase;
  width: min(250px, 100%);
}

.contact-submit:hover {
  background: var(--color-red-bright);
}

.contact-submit strong {
  font-size: 1.2rem;
}

.contact-side {
  display: grid;
  grid-template-rows: 1fr auto;
}

.contact-methods {
  padding: 32px 34px 30px;
}

.contact-methods .red-brush,
.contact-sponsor-copy .red-brush {
  height: 5px;
  margin: 10px 0 26px;
  max-width: 115px;
}

.contact-method {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 56px minmax(0, 1fr);
  margin-bottom: 20px;
  text-decoration: none;
}

.contact-icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #f2f2f2;
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 1.35rem;
  height: 56px;
  justify-content: center;
  position: relative;
  width: 56px;
}

.contact-icon-email::before {
  content: "\2709";
}

.contact-icon-instagram::before,
.contact-icon-youtube::before,
.contact-icon-facebook::before,
.contact-icon-tiktok::before {
  content: none;
}

.contact-icon .social-icon {
  height: 22px;
  width: 22px;
}

.contact-method strong {
  color: #f2f2f2;
  display: block;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-method em {
  color: var(--color-red-bright);
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.45;
  margin-top: 4px;
}

.contact-media {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px 34px 32px;
}

.contact-media-row {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 72px minmax(0, 1fr);
  margin-top: 20px;
}

.contact-icon-handshake {
  border: 0;
  color: var(--color-red-bright);
  font-size: 2.6rem;
  height: 72px;
  width: 72px;
}

.contact-icon-handshake::before {
  content: "\2662";
  transform: rotate(45deg);
}

.contact-media p {
  color: #d8d8d8;
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
}

.contact-media a {
  color: var(--color-red-bright);
  text-decoration: none;
}

.contact-sponsor-strip {
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.65fr);
  margin-bottom: 28px;
  min-height: 245px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.contact-sponsor-copy {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 30px 34px 34px;
  position: relative;
  z-index: 2;
}

.contact-sponsor-copy p {
  color: #d8d8d8;
  font-size: 0.78rem;
  line-height: 1.65;
  margin: 0 0 26px;
}

.contact-sponsor-copy .sponsor-outline-button {
  margin: 5px;
  min-width: 0;
  width: min(305px, calc(100% - 10px));
}

.contact-sponsor-copy .sponsor-outline-button::after {
  inset: 0;
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.contact-stats article {
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  min-height: 216px;
  padding: 18px;
  text-align: center;
}

.contact-stats article:last-child {
  border-right: 0;
}

.contact-stats .sponsor-stat-icon {
  filter: brightness(1.5);
}

.contact-stats strong {
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.85;
  overflow-wrap: anywhere;
}

.contact-stats p {
  color: #d8d8d8;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.25;
  margin: 8px auto 0;
  max-width: 115px;
  text-transform: uppercase;
}

.contact-footer-clock {
  bottom: -62px;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
  right: 0;
  width: 205px;
  z-index: 1;
}

.blog-hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  isolation: isolate;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 430px;
  overflow: hidden;
  padding: 76px 64px 44px;
  position: relative;
}

.blog-row::after,
.blog-sidebar-panel::after {
  background:
    repeating-linear-gradient(
      103deg,
      rgba(255, 255, 255, 0.055) 0 1px,
      transparent 1px 18px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 12px,
      rgba(255, 255, 255, 0.025) 13px
    );
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.blog-hero-copy {
  align-self: end;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.blog-hero-page h1 {
  color: #f2f2f2;
  font-size: clamp(6rem, 13vw, 10.2rem);
  letter-spacing: 0;
  margin: 0 0 26px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
}

.blog-hero-page p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: #f2f2f2;
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
  padding-bottom: 18px;
}

.blog-hero-clock {
  place-self: center end;
  filter: grayscale(1) contrast(1.2);
  max-width: 350px;
  mix-blend-mode: screen;
  opacity: 0.92;
  width: 100%;
}

.blog-graffiti-mark {
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.9;
  position: absolute;
  right: 265px;
  text-transform: uppercase;
  top: 175px;
  transform: rotate(-8deg);
}

.blog-archive {
  padding-top: 10px;
}

.blog-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.blog-category-tabs a,
.blog-search-panel,
.blog-sidebar-panel {
  border: 1px solid var(--color-line);
}

.blog-category-tabs a {
  color: #f4f4f4;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  min-height: 39px;
  padding: 9px 17px;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-category-tabs a:hover,
.blog-category-tabs .is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.blog-layout {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 335px);
}

.blog-list {
  min-width: 0;
}

.blog-row {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 342px) minmax(0, 1fr);
  margin-bottom: 24px;
  padding-bottom: 24px;
  position: relative;
}

.blog-row-image {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: block;
  min-height: 208px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.blog-row-image::after,
.blog-featured-image::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.blog-row-image img {
  filter: grayscale(1) contrast(1.18);
  height: 100%;
  min-height: 208px;
  object-fit: cover;
  width: 100%;
}

.blog-row-copy {
  padding-top: 2px;
  position: relative;
  z-index: 1;
}

.blog-row-copy time {
  color: var(--color-red-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.blog-row-copy h2 {
  color: #f2f2f2;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 0.98;
  margin: 0 0 14px;
}

.blog-row-copy h2 a,
.blog-featured-card h3 a {
  text-decoration: none;
}

.blog-row-copy h2 a:hover,
.blog-featured-card h3 a:hover {
  color: var(--color-accent);
}

.blog-row-copy p {
  color: #d3d3d3;
  font-size: 0.86rem;
  line-height: 1.62;
  margin: 0 0 16px;
  max-width: 520px;
}

.blog-read-link {
  color: #f2f2f2;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-read-link span,
.blog-read-link:hover {
  color: var(--color-red-bright);
}

.blog-sidebar {
  display: grid;
  gap: 24px;
}

.blog-search-panel {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 54px;
  min-height: 62px;
}

.blog-search-panel input,
.blog-newsletter input {
  background: transparent;
  border: 0;
  color: #f2f2f2;
  font: inherit;
  min-width: 0;
  outline: 0;
}

.blog-search-panel input {
  padding: 0 22px;
}

.blog-search-panel button {
  background: transparent;
  border: 0;
  color: #f2f2f2;
  cursor: pointer;
  font-size: 1.85rem;
  height: 100%;
}

.blog-sidebar-panel {
  padding: 24px;
  position: relative;
}

.blog-sidebar-panel h2 {
  color: #f2f2f2;
  font-size: 1.38rem;
  line-height: 1;
  margin: 0 0 22px;
  padding-bottom: 10px;
  position: relative;
}

.blog-sidebar-panel h2::after {
  background: var(--color-accent);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: rotate(-2deg);
  width: 78px;
}

.blog-featured-image {
  display: block;
  margin-bottom: 18px;
  min-height: 150px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.blog-featured-image img {
  filter: grayscale(1) contrast(1.16);
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  width: 100%;
}

.blog-featured-image span {
  background: var(--color-accent);
  bottom: 16px;
  color: #f2f2f2;
  font-size: 0.66rem;
  font-weight: 800;
  left: 0;
  padding: 5px 8px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.blog-featured-card h3 {
  color: #f2f2f2;
  font-size: 1.35rem;
  line-height: 1.18;
  margin: 0 0 20px;
}

.blog-category-panel a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #d2d2d2;
  display: flex;
  font-size: 0.86rem;
  justify-content: space-between;
  padding: 9px 0;
  text-decoration: none;
}

.blog-category-panel a:hover,
.blog-category-panel .is-active,
.blog-category-panel strong {
  color: var(--color-accent);
}

.blog-newsletter p,
.blog-newsletter small {
  color: #d8d8d8;
  font-size: 0.78rem;
  line-height: 1.55;
}

.blog-newsletter form {
  display: grid;
  gap: 0;
  margin: 20px 0 14px;
}

.blog-newsletter input {
  border: 1px solid var(--color-line);
  min-height: 52px;
  padding: 0 18px;
}

.blog-newsletter button {
  background: var(--color-accent);
  border: 0;
  color: #f2f2f2;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 700;
  min-height: 52px;
  text-transform: uppercase;
}

.blog-newsletter button:hover {
  background: var(--color-red-bright);
}

.author-landing {
  margin: 0 auto;
  max-width: var(--container);
}

.author-hero {
  padding-top: 24px;
}

.author-breadcrumb {
  margin-bottom: 28px;
}

.author-hero-grid {
  align-items: end;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.author-hero-copy h1 {
  color: #f2f2f2;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.92;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.author-role {
  color: #dfdfdf;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.62;
  margin: 0 0 24px;
  max-width: 680px;
}

.author-hero-image {
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
  min-height: 430px;
  overflow: hidden;
}

.author-hero-image img {
  filter: grayscale(1) contrast(1.12);
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.author-content {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  padding-top: 44px;
}

.author-main,
.author-side {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.author-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px;
}

.author-panel h2 {
  color: #f2f2f2;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.author-panel p,
.author-list {
  color: #d8d8d8;
  font-size: 0.98rem;
  line-height: 1.72;
}

.author-panel p:last-child,
.author-list:last-child {
  margin-bottom: 0;
}

.author-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.author-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.author-links {
  display: grid;
  gap: 12px;
}

.author-links a {
  align-items: center;
  color: #f2f2f2;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.author-links .social-icon {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.author-links span {
  overflow-wrap: anywhere;
}

.author-links a:hover {
  color: var(--color-accent);
}

.single-blog-post {
  padding-top: 24px;
}

.single-blog-breadcrumb {
  margin-bottom: 28px;
}

.single-blog-hero {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  margin-bottom: 42px;
  position: relative;
}

.single-blog-hero::before {
  background: rgba(193, 18, 31, 0.88);
  bottom: 12px;
  content: "";
  height: 3px;
  left: 0;
  max-width: 640px;
  position: absolute;
  transform: rotate(-1.5deg);
  width: 52%;
}

.single-blog-copy {
  padding-bottom: 36px;
}

.single-blog-copy h1 {
  color: #f2f2f2;
  font-size: clamp(3.4rem, 7.4vw, 6.3rem);
  line-height: 0.92;
  margin: 0 0 22px;
  max-width: 850px;
  text-transform: uppercase;
}

.single-blog-lead {
  color: #dfdfdf;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
  margin: 0 0 24px;
  max-width: 690px;
}

.single-blog-meta {
  color: #cfcfcf;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 13px 20px;
  text-transform: uppercase;
}

.blog-meta-item {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.blog-meta-item svg {
  fill: none;
  flex: 0 0 16px;
  height: 16px;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 16px;
}

.single-blog-image {
  border: 1px solid rgba(255, 255, 255, 0.24);
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.single-blog-image::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.single-blog-image img {
  filter: grayscale(1) contrast(1.2);
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.single-blog-layout {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 350px);
  margin-bottom: 54px;
}

.single-blog-main {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  min-width: 0;
  padding-top: 34px;
}

.single-blog-content {
  font-size: 1rem;
  line-height: 1.82;
  max-width: 780px;
}

.single-blog-content > *:first-child {
  margin-top: 0;
}

.single-blog-content h2,
.single-blog-content h3 {
  color: #f2f2f2;
  line-height: 1;
  margin: 34px 0 16px;
  text-transform: uppercase;
}

.single-blog-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.single-blog-content h3 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.single-blog-content blockquote {
  border-left: 4px solid var(--color-accent);
  color: #f2f2f2;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
  margin: 34px 0;
  padding: 7px 0 7px 24px;
  text-transform: uppercase;
}

.single-blog-content a {
  color: var(--color-red-bright);
}

.single-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 28px;
}

.single-blog-tags a {
  border: 1px solid var(--color-line);
  color: #f2f2f2;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.single-blog-tags a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.single-blog-share {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.single-blog-comments {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 34px;
  padding-top: 32px;
}

.single-blog-comments-heading {
  margin-bottom: 26px;
}

.single-blog-comments-heading h2,
.single-blog-comment-form .comment-reply-title {
  color: #f2f2f2;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.single-blog-comments-heading p:not(.episode-label),
.comment-notes,
.logged-in-as,
.comment-form-cookies-consent,
.single-blog-comments-closed {
  color: #cfcfcf;
  font-size: 0.84rem;
  line-height: 1.6;
}

.single-blog-comment-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.single-blog-comment-list .children {
  border-left: 2px solid rgba(193, 18, 31, 0.75);
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 18px 0 0 24px;
  padding: 0 0 0 18px;
}

.single-blog-comment-list .comment-body {
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid var(--color-line);
  padding: 18px;
  position: relative;
}

.single-blog-comment-list .comment-body::after {
  background:
    repeating-linear-gradient(
      103deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 18px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 12px,
      rgba(255, 255, 255, 0.022) 13px
    );
  content: "";
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
}

.single-blog-comment-list .comment-meta,
.single-blog-comment-list .comment-author {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.single-blog-comment-list .avatar {
  border-radius: 50%;
  filter: grayscale(1) contrast(1.12);
}

.single-blog-comment-list .fn,
.single-blog-comment-list .says {
  color: #f2f2f2;
  font-style: normal;
  text-transform: uppercase;
}

.single-blog-comment-list .comment-metadata,
.single-blog-comment-list .comment-awaiting-moderation {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.single-blog-comment-list .comment-content {
  color: #d8d8d8;
  line-height: 1.7;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.single-blog-comment-list .reply {
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.single-blog-comment-list .comment-reply-link,
.comment-navigation a {
  color: #f2f2f2;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.single-blog-comment-list .comment-reply-link:hover,
.comment-navigation a:hover {
  color: var(--color-accent);
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.single-blog-comment-form {
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid var(--color-line);
  padding: 24px;
}

.single-blog-comment-form label {
  color: #f2f2f2;
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.single-blog-comment-form textarea,
.single-blog-comment-form input:not([type="checkbox"], [type="submit"]) {
  background: transparent;
  border: 1px solid var(--color-line);
  color: #f2f2f2;
  font: inherit;
  min-height: 52px;
  outline: 0;
  padding: 13px 16px;
  width: 100%;
}

.single-blog-comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.single-blog-comment-form textarea:focus,
.single-blog-comment-form input:focus {
  border-color: var(--color-accent);
}

.single-blog-comment-form .form-submit {
  margin-bottom: 0;
}

.single-blog-comment-form button[type="submit"] {
  background: var(--color-accent);
  border: 0;
  color: #f2f2f2;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 800;
  min-height: 52px;
  padding: 0 22px;
  text-transform: uppercase;
}

.single-blog-comment-form button[type="submit"]:hover {
  background: var(--color-red-bright);
}

.single-blog-sidebar {
  display: grid;
  gap: 24px;
}

.single-blog-info dl {
  display: grid;
  gap: 15px;
  margin: 0;
}

.single-blog-info div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-bottom: 13px;
}

.single-blog-info div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.single-blog-info dt {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.single-blog-info dd {
  color: #f2f2f2;
  margin: 0;
}

.single-blog-guest a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.single-blog-guest img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.15);
  margin: 0 auto 15px;
  object-fit: cover;
  width: 180px;
}

.single-blog-guest strong {
  color: #f2f2f2;
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.single-blog-guest span {
  color: var(--color-muted);
  display: block;
  font-size: 0.76rem;
  margin-top: 8px;
  text-transform: uppercase;
}

.single-blog-related {
  margin-top: 18px;
}

.single-blog-related-grid {
  display: grid;
  gap: 24px;
}

.single-blog-related-card {
  grid-template-columns: minmax(220px, 285px) minmax(0, 1fr);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 18px 24px;
  }

  .site-menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-social {
    order: 2;
  }

  .site-nav {
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
    max-width: 100%;
    min-width: 0;
    order: 4;
    overflow: hidden;
    padding: 16px;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: block;
  }

  .site-nav ul,
  .site-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    display: block;
    font-size: 0.92rem;
    padding: 10px 0;
  }

  .site-nav .current-menu-item a::after {
    bottom: 4px;
    left: 0;
    right: auto;
    width: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 54px 24px 78px;
  }

  .hero-side-label,
  .hero-pager {
    display: none;
  }

  .hero-mark {
    font-size: clamp(5rem, 22vw, 9rem);
  }

  .hero-copy {
    transform: none;
  }

  .hero-intro,
  .rough-button {
    margin-left: 0;
  }

  .hero-clock {
    justify-self: center;
    margin-top: -20px;
    max-width: 360px;
    opacity: 0.9;
  }

  .hero-controls {
    bottom: 24px;
    left: 24px;
    right: auto;
  }

  .about-hero-page {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 24px 76px;
  }

  .about-hero-page h1 {
    font-size: clamp(5rem, 20vw, 8.5rem);
  }

  .about-hero-clock {
    justify-self: center;
    margin-top: -18px;
    max-width: 340px;
  }

  .about-crown {
    left: 32px;
    top: 118px;
  }

  .about-respect {
    bottom: 22px;
    right: 28px;
  }

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

  .about-stats article:nth-child(2n) {
    border-right: 0;
  }

  .about-stats article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about-stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-quote-band blockquote {
    margin-left: 92px;
  }

  .about-quote-band blockquote::before {
    left: -95px;
  }

  .latest-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .info-grid,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .episodes-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 24px 42px;
  }

  .episodes-clock {
    justify-self: center;
    margin-top: -16px;
    max-width: 260px;
  }

  .episodes-toolbar,
  .episodes-layout,
  .single-episode-hero,
  .single-episode-layout,
  .guest-hero,
  .guest-main-grid,
  .episode-row {
    grid-template-columns: 1fr;
  }

  .episode-row {
    gap: 16px;
  }

  .episode-number,
  .episode-row-copy {
    padding: 0 16px;
  }

  .episode-row-image {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .single-episode {
    padding-top: 24px;
  }

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

  .guest-hero,
  .guests-hero {
    padding: 54px 24px 42px;
  }

  .guest-back-link {
    margin-bottom: 34px;
  }

  .guest-hero-image {
    width: min(100%, 420px);
  }

  .guest-bio-block,
  .guest-episode-panel {
    border-right: 0;
    padding: 28px 0;
  }

  .guest-stats-strip,
  .guests-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guests-hero,
  .guests-archive-layout {
    grid-template-columns: 1fr;
  }

  .guests-hero-clock {
    max-width: 260px;
  }

  .guest-stats-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .sponsor-hero,
  .sponsor-proof,
  .sponsor-contact {
    grid-template-columns: 1fr;
  }

  .sponsor-hero {
    min-height: auto;
    padding: 68px 24px 48px;
  }

  .sponsor-hero-art {
    min-height: 330px;
  }

  .sponsor-proof-copy {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    padding: 0 0 24px;
  }

  .sponsor-stat-grid,
  .sponsor-package-grid,
  .sponsor-partner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-stat-grid article:nth-child(2n),
  .sponsor-partner-strip a:nth-child(2n) {
    border-right: 0;
  }

  .sponsor-contact {
    padding: 24px;
  }

  .sponsor-contact img {
    height: 220px;
  }

  .contact-hero,
  .contact-panel,
  .contact-sponsor-strip,
  .blog-hero-page,
  .blog-layout,
  .author-hero-grid,
  .author-content,
  .single-blog-hero,
  .single-blog-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    padding: 58px 24px 34px;
  }

  .contact-hero-art {
    justify-self: center;
    min-height: 300px;
    width: min(460px, 100%);
  }

  .contact-form-wrap,
  .contact-sponsor-copy {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

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

  .contact-stats article:nth-child(2n) {
    border-right: 0;
  }

  .contact-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .blog-hero-page {
    min-height: auto;
    padding: 58px 24px 34px;
  }

  .blog-hero-clock {
    justify-self: center;
    margin-top: -18px;
    max-width: 285px;
  }

  .blog-graffiti-mark {
    right: 26px;
    top: 170px;
  }

  .blog-row {
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  }

  .single-blog-post {
    padding-top: 24px;
  }

  .single-blog-copy {
    padding-bottom: 22px;
  }

  .single-blog-image,
  .single-blog-image img {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 20px 18px;
  }

  .site-brand {
    width: 146px;
  }

  .site-social {
    gap: 8px;
  }

  .site-shop-actions {
    gap: 12px;
  }

  .site-shop-search:hover input[type="search"],
  .site-shop-search:focus-within input[type="search"] {
    width: min(150px, calc(100vw - 176px));
  }

  .site-social a {
    height: 22px;
    width: 22px;
  }

  .hero-slide {
    padding: 38px 18px 62px;
  }

  .hero-controls {
    bottom: 18px;
    left: 18px;
  }

  .hero-intro {
    font-size: 0.88rem;
  }

  .rough-button {
    font-size: 1rem;
    gap: 16px;
    min-height: 48px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-band {
    padding: 42px 18px;
  }

  .blog-grid,
  .info-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-card a {
    min-height: 245px;
  }

  .episode-copy {
    padding-right: 0;
  }

  .episodes-hero {
    padding: 46px 18px 42px;
  }

  .about-hero-page {
    padding: 44px 18px 60px;
  }

  .about-hero-page h1 {
    font-size: clamp(4.1rem, 21vw, 6.3rem);
  }

  .about-lead {
    font-size: 1rem;
  }

  .about-stats,
  .about-authors-grid {
    grid-template-columns: 1fr;
  }

  .about-stats article,
  .about-stats article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
  }

  .about-stats article:last-child {
    border-bottom: 0;
  }

  .about-author-card {
    min-height: auto;
    padding-bottom: 60px;
  }

  .about-quote-band {
    padding: 30px 22px;
  }

  .about-quote-band blockquote {
    margin-left: 0;
  }

  .about-quote-band blockquote::before,
  .about-quote-band blockquote::after {
    display: none;
  }

  .episodes-clock {
    margin-top: -24px;
    max-width: 220px;
  }

  .episodes-list {
    padding: 0;
  }

  .episode-row {
    gap: 14px;
    padding: 22px 0;
  }

  .episode-number,
  .episode-row-copy {
    padding: 0 14px;
  }

  .episode-row-image {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .sidebar-panel {
    padding: 20px;
  }

  .episode-player-frame,
  .episode-player-frame img {
    min-height: 270px;
  }

  .episode-player-play {
    font-size: 1.55rem;
    height: 66px;
    width: 66px;
  }

  .single-episode-tabs {
    gap: 18px;
  }

  .single-episode-tabs a {
    font-size: 0.98rem;
  }

  .episode-transcript-list li {
    grid-template-columns: 74px 1fr;
  }

  .related-episodes-grid {
    grid-template-columns: 1fr;
  }

  .guest-hero,
  .guests-hero {
    padding: 46px 18px 38px;
  }

  .guest-facts,
  .guest-gallery-grid,
  .guest-stats-strip,
  .guests-grid,
  .sponsor-stat-grid,
  .sponsor-package-grid,
  .sponsor-partner-strip {
    grid-template-columns: 1fr;
  }

  .guests-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .guests-sort {
    justify-content: space-between;
  }

  .guest-stats-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .guest-stats-strip > div:last-child {
    border-bottom: 0;
  }

  .guest-featured-episode-image span {
    font-size: 3.8rem;
  }

  .sponsor-hero {
    padding: 46px 18px 42px;
  }

  .sponsor-hero h1 {
    font-size: clamp(4.5rem, 21vw, 6.6rem);
  }

  .sponsor-outline-button {
    min-width: 0;
    width: 100%;
  }

  .sponsor-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sponsor-stat-grid article,
  .sponsor-stat-grid article:last-child,
  .sponsor-partner-strip a,
  .sponsor-partner-strip a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }

  .sponsor-stat-grid article:last-child,
  .sponsor-partner-strip a:last-child {
    border-bottom: 0;
  }

  .sponsor-package {
    padding: 26px 24px 30px;
  }

  .contact-hero {
    padding: 42px 18px 28px;
  }

  .contact-hero h1 {
    font-size: clamp(4.4rem, 22vw, 6.6rem);
  }

  .contact-lead {
    font-size: 1.18rem;
  }

  .contact-hero-art {
    min-height: 235px;
  }

  .contact-form-wrap,
  .contact-methods,
  .contact-media,
  .contact-sponsor-copy {
    padding: 26px 20px;
  }

  .contact-captcha-row {
    grid-template-columns: 1fr 52px;
  }

  .contact-captcha-code {
    grid-column: 1 / -1;
  }

  .contact-media-row {
    grid-template-columns: 1fr;
  }

  .contact-stats {
    grid-template-columns: 1fr;
  }

  .contact-stats article,
  .contact-stats article:nth-child(-n + 2),
  .contact-stats article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    min-height: 170px;
  }

  .contact-stats article:last-child {
    border-bottom: 0;
  }

  .blog-hero-page {
    padding: 46px 18px 30px;
  }

  .blog-hero-page h1 {
    font-size: clamp(4.5rem, 22vw, 6.8rem);
  }

  .blog-category-tabs {
    gap: 8px;
  }

  .blog-category-tabs a {
    font-size: 0.7rem;
    min-height: 36px;
    padding: 8px 12px;
  }

  .blog-row {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .blog-row-image,
  .blog-row-image img {
    min-height: 215px;
  }

  .blog-sidebar-panel {
    padding: 20px;
  }

  .single-blog-copy h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .single-blog-image,
  .single-blog-image img {
    min-height: 250px;
  }

  .single-blog-main {
    padding-top: 26px;
  }

  .single-blog-related-card {
    grid-template-columns: 1fr;
  }

  .single-blog-comment-form {
    padding: 20px;
  }

  .single-blog-comment-list .children {
    margin-left: 10px;
    padding-left: 14px;
  }
}

/* Shop category: Dukserice */
.shop-category-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 470px;
  overflow: hidden;
  padding: 78px max(24px, calc((100vw - var(--container)) / 2)) 48px;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.94) 37%,
      rgba(5, 5, 5, 0.28) 75%
    ),
    url("../img/grunge-bg.jpg") center / cover;
  border-bottom: 1px solid #252525;
}

.shop-category-hero.shop-search-hero {
  display: block;
  min-height: 270px;
  padding-top: 68px;
  padding-bottom: 52px;
  background: #050505;
}

.shop-category-hero.shop-search-hero h1 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.9;
}

.shop-category-hero.shop-search-hero .shop-title-brush {
  width: 130px;
  height: 8px;
  margin: 14px 0 0;
}

.shop-category-hero.shop-search-hero .shop-search-query {
  margin-top: 18px;
  color: #aaa;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
}

.shop-search-query strong {
  color: #f0f0f0;
  font-weight: 500;
}

.shop-category-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.shop-breadcrumb {
  margin-bottom: 30px;
}

.shop-category-hero h1 {
  margin: 0;
  color: #f4f4f4;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(76px, 10vw, 150px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0.02em;
}

.shop-title-brush {
  display: block;
  width: 250px;
  height: 11px;
  margin: 18px 0 29px;
  background: #d71920;
  clip-path: polygon(0 34%, 100% 0, 91% 49%, 100% 71%, 2% 100%, 13% 64%);
}

.shop-category-hero h2 {
  margin: 0 0 10px;
  color: #efefef;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.shop-category-hero p {
  max-width: 460px;
  margin: 0;
  color: #c4c4c4;
  font-size: 14px;
  line-height: 1.8;
}

.shop-category-hero-art {
  position: absolute;
  z-index: 1;
  right: 2vw;
  bottom: -140px;
  display: flex;
  width: min(59vw, 870px);
  height: 570px;
  align-items: end;
  justify-content: center;
  transform: rotate(-2deg);
}

.shop-category-hero-art::before {
  position: absolute;
  inset: 10% 10% 7%;
  border: 2px solid rgba(235, 235, 235, 0.58);
  content: "";
  transform: rotate(5deg);
}

.shop-category-hero-art img {
  position: relative;
  z-index: 1;
  width: 52%;
  max-height: 100%;
  object-fit: cover;
  object-position: top;
  filter: contrast(1.1) grayscale(0.22);
}

.shop-category-hero-art img + img {
  width: 48%;
  margin-left: -8%;
  transform: translateY(35px);
}

.shop-catalog {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 26px;
  max-width: var(--container);
  padding-top: 42px;
  padding-bottom: 42px;
}

.shop-filters {
  align-self: start;
  padding: 22px 18px;
  border: 1px solid #373737;
  background: rgba(7, 7, 7, 0.72);
}

.shop-filters h2,
.shop-filters h3,
.shop-product-card h2,
.shop-benefits h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
}

.shop-filters h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.03em;
}

.shop-filters .shop-title-brush {
  width: 88px;
  height: 7px;
  margin: 7px 0 17px;
}

.shop-filter-group {
  padding: 16px 0;
  border-top: 1px solid #292929;
}

.shop-filter-group h3 {
  margin: 0 0 12px;
  color: #e6e6e6;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.shop-filter-group a {
  display: block;
  padding: 5px 0;
  color: #b5b5b5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-decoration: none;
}

.shop-filter-group a.is-active,
.shop-filter-group em {
  color: #d71920;
  font-style: normal;
}

.shop-filter-group > span {
  color: #aaa;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.shop-colors {
  display: flex;
  gap: 10px;
}

.shop-colors i {
  width: 13px;
  height: 13px;
  border: 1px solid #bbb;
  border-radius: 50%;
  background: #080808;
}

.shop-colors i:nth-child(2) {
  background: #777;
}

.shop-colors i:nth-child(3) {
  background: #eee;
}

.shop-colors i:nth-child(4) {
  border-color: #d71920;
  background: #7d0e15;
}

.shop-products-wrap {
  min-width: 0;
}

.shop-catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-bottom: 18px;
  color: #a8a8a8;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.shop-catalog-top p {
  margin: 0;
}

.shop-catalog-top span {
  padding: 10px 18px;
  border: 1px solid #3b3b3b;
  color: #ececec;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shop-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #353535;
  background: #080808;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.shop-product-card:hover {
  border-color: #741117;
  box-shadow: inset 0 0 0 1px rgba(116, 17, 23, 0.45);
}

.shop-product-image {
  position: relative;
  display: block;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: #080808;
}

.shop-product-image .shop-product-badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 3px 6px;
  background: #e3e3e3;
  color: #111;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.shop-product-image .shop-product-badge--limited {
  background: #741117;
  color: #fff;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.025);
}

.shop-product-info {
  display: flex;
  min-height: 136px;
  flex: 1;
  flex-direction: column;
  padding: 15px 13px 12px;
  background: #080808;
}

.shop-product-card h2 {
  min-height: 42px;
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.025em;
}

.shop-product-card h2 a {
  color: #eee;
  text-decoration: none;
}

.shop-price {
  min-height: 22px;
  margin: 0;
  color: #e02028;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.shop-price del {
  margin-right: 7px;
  color: #777;
  font-size: 11px;
  text-decoration-thickness: 1px;
}

.shop-price ins {
  color: #e02028;
  text-decoration: none;
}

.shop-price .woocommerce-Price-currencySymbol {
  margin-right: 3px;
}

.shop-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  margin-top: auto;
  padding-top: 12px;
  color: #aaa;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.shop-product-actions > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-product-actions .shop-product-view {
  display: inline-flex;
  min-height: 30px;
  flex: 0 0 auto;
  align-items: center;
  margin-left: 10px;
  padding: 0 9px;
  border: 1px solid #555;
  color: #eee;
  font:
    11px/1 "Oswald",
    sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.shop-product-actions .shop-product-view:only-child {
  margin-left: auto;
}

.shop-product-actions .shop-product-view:hover {
  border-color: #d71920;
  background: #d71920;
}

.shop-empty {
  color: #bbb;
}

.shop-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--container);
  padding-top: 0;
  padding-bottom: 48px;
  border-top: 1px solid #323232;
}

.shop-benefits article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  border-right: 1px solid #323232;
  text-align: center;
}

.shop-benefits article:last-child {
  border-right: 0;
}

.shop-benefit-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  place-items: center;
  color: #d71920;
}

.shop-benefit-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.shop-benefits h2 {
  margin: 0 0 5px;
  font-size: 21px;
  letter-spacing: 0.03em;
}

.shop-benefits p {
  margin: 0;
  color: #aaa;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .shop-category-hero {
    grid-template-columns: 1fr;
  }

  .shop-category-hero-art {
    right: -15vw;
    opacity: 0.45;
  }

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

  .shop-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-benefits article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .shop-category-hero {
    min-height: 410px;
    padding: 55px 24px 36px;
  }

  .shop-category-hero h1 {
    font-size: 82px;
  }

  .shop-category-hero-art {
    display: none;
  }

  .shop-catalog {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }

  .shop-filters {
    display: none;
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .shop-product-info {
    padding: 11px 9px;
  }

  .shop-product-card h2 {
    font-size: 17px;
  }

  .shop-product-actions span {
    display: none;
  }

  .shop-benefits {
    grid-template-columns: 1fr;
    padding: 0 20px 28px;
  }

  .shop-benefits article,
  .shop-benefits article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #323232;
  }

  .shop-catalog-top {
    font-size: 9px;
  }
}

/* Shop home */
.shop-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 550px;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid #303030;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.96) 39%,
      rgba(5, 5, 5, 0.18) 75%
    ),
    url("../img/grunge-bg.jpg") center / cover;
}

.shop-home-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 42%);
  content: "";
  pointer-events: none;
}

.shop-home-hero-copy {
  z-index: 2;
  padding: 74px max(5vw, 54px) 55px;
}

.shop-home-kicker {
  margin: 0 0 14px;
  color: #bbb;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-home-hero h1 {
  display: flex;
  flex-direction: column;
  width: max-content;
  max-width: 100%;
  margin: 0 0 25px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(74px, 9.2vw, 144px);
  font-weight: 400;
  line-height: 0.71;
  letter-spacing: -0.065em;
}

.shop-home-hero h1 span {
  color: #e6e6e6;
  text-shadow: none;
}

.shop-home-hero h1 em {
  margin: 12px 0 0 0.23em;
  color: #c71018;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.8em;
  font-style: italic;
  letter-spacing: -0.04em;
  transform: skew(-12deg);
}

.shop-home-hero h2 {
  margin: 0 0 12px;
  color: #eee;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 400;
}

.shop-home-hero-copy > p:not(.shop-home-kicker) {
  max-width: 420px;
  margin: 0 0 24px;
  color: #c6c6c6;
  font-size: 13px;
  line-height: 1.8;
}

.shop-home-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 26px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #f4f4f4;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.shop-home-button strong {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-2px);
}

.shop-home-button:hover {
  border-color: #d71920;
  background: #d71920;
}

.shop-home-hero-art {
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.shop-home-hero-frame {
  position: absolute;
  inset: 7% 14% 7% 11%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: rotate(-4deg);
}

.shop-home-hero-product {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  filter: contrast(1.12) grayscale(0.48) drop-shadow(0 14px 30px #000);
}

.shop-home-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-home-hero-product-1 {
  right: 16%;
  bottom: -6%;
  width: min(39vw, 520px);
  height: 98%;
}

.shop-home-hero-product-2 {
  right: 2%;
  bottom: 0;
  width: min(21vw, 310px);
  height: 55%;
  opacity: 0.62;
  transform: rotate(12deg);
}

.shop-home-note {
  position: absolute;
  z-index: 3;
  top: 55px;
  right: 4%;
  width: 182px;
  padding: 25px 19px 17px;
  background: #cbb28a;
  color: #1b1711;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
  transform: rotate(6deg);
}

.shop-home-note::before {
  position: absolute;
  top: -13px;
  left: 41px;
  width: 72px;
  height: 24px;
  background: rgba(220, 220, 210, 0.56);
  content: "";
  transform: rotate(-8deg);
}

.shop-home-note small {
  display: block;
  font-size: 11px;
}

.shop-home-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid #303030;
}

.shop-home-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 21px 22px;
  border-right: 1px solid #303030;
}

.shop-home-benefits article:last-child {
  border-right: 0;
}

.shop-home-benefit-icon {
  color: #d71920;
}

.shop-home-benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.shop-home-benefits h2 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 400;
}

.shop-home-benefits p {
  margin: 0;
  color: #aaa;
  font-size: 10px;
  line-height: 1.5;
}

.shop-home-section {
  max-width: var(--container);
  padding-top: 54px;
  padding-bottom: 20px;
}

.shop-home-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}

.shop-home-heading .shop-title-brush {
  width: 100px;
  height: 7px;
  margin: 7px 0 22px;
}

.shop-home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shop-home-category-card {
  position: relative;
  display: block;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid #494949;
  background: #080808;
  text-decoration: none;
}

.shop-home-category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.96) 2%, transparent 65%);
  content: "";
}

.shop-home-category-card:hover {
  border-color: #d71920;
}

.shop-home-category-art {
  position: absolute;
  inset: 8px 8px 42px;
  display: block;
}

.shop-home-category-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.65) contrast(1.1);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.shop-home-category-card:hover img {
  filter: grayscale(0.15) contrast(1.08);
  transform: scale(1.04);
}

.shop-home-category-copy {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 12px;
  left: 14px;
}

.shop-home-category-copy strong {
  display: block;
  color: #f1f1f1;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-home-category-copy small {
  color: #bbb;
  font-size: 10px;
}

.shop-home-category-copy b {
  margin-left: 8px;
  color: #d71920;
  font-size: 16px;
  font-weight: 400;
}

.shop-home-editions {
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
  gap: 22px;
  max-width: var(--container);
  padding-top: 36px;
  padding-bottom: 46px;
}

.shop-home-edition-intro > p {
  margin: 0 0 18px;
  color: #aaa;
  font-size: 11px;
  line-height: 1.7;
}

.shop-home-edition-intro .shop-home-button {
  min-height: 37px;
  padding-left: 13px;
  font-size: 11px;
}

.shop-home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.shop-home-product-card {
  min-width: 0;
  background: #080808;
}

.shop-home-product-image {
  position: relative;
  display: block;
  aspect-ratio: 0.82;
  overflow: hidden;
  border: 1px solid #444;
  background: #080808;
}

.shop-home-product-badge,
.shop-pdp-related-badge {
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 9px;
  padding: 3px 6px;
  background: #741117;
  color: #fff;
  font:
    9px "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
}

.shop-home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.35) contrast(1.1);
  transition: transform 0.25s ease;
}

.shop-home-product-image:hover img {
  transform: scale(1.04);
}

.shop-home-product-card h3 {
  margin: 10px 0 3px;
  font-size: 18px;
  font-weight: 400;
}

.shop-home-product-card h3 a {
  color: #eee;
  text-decoration: none;
}

.shop-home-product-card p {
  margin: 0;
  color: #e02028;
  font-size: 11px;
  font-weight: 700;
}

.shop-home-promos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  max-width: var(--container);
  padding-top: 0;
  padding-bottom: 38px;
}

.shop-home-promo {
  min-height: 160px;
  padding: 25px 20px;
  border: 1px solid #555;
  background-color: #101010;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.shop-home-promo-collaboration {
  background-image:
    linear-gradient(90deg, #090909 26%, transparent),
    url("../img/sponsor-crowd.jpg");
}

.shop-home-promo-bundle {
  background-image:
    linear-gradient(90deg, #090909 26%, transparent),
    url("../img/shop/dukserica-stripe-charcoal.png");
}

.shop-home-promo-custom {
  background-image:
    linear-gradient(90deg, #090909 26%, transparent),
    url("../img/quote-mic-clean.jpg");
}

.shop-home-promo h2 {
  margin: 0 0 7px;
  font-size: 27px;
  font-weight: 400;
}

.shop-home-promo p {
  max-width: 220px;
  margin: 0 0 15px;
  color: #bbb;
  font-size: 10px;
  line-height: 1.6;
}

.shop-home-promo a {
  color: #eee;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-home-promo a b {
  margin-left: 12px;
  color: #d71920;
  font-size: 17px;
  font-weight: 400;
}

.shop-home-newsletter {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(300px, 1.1fr);
  gap: 45px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto 42px;
  padding: 24px 0;
  border-top: 1px solid #333;
}

.shop-home-newsletter h2 {
  margin: 0 0 6px;
  font-size: 27px;
  font-weight: 400;
}

.shop-home-newsletter p {
  margin: 0;
  color: #aaa;
  font-size: 10px;
  line-height: 1.5;
}

.shop-home-newsletter form {
  display: flex;
}

.shop-home-newsletter input {
  min-width: 0;
  flex: 1;
  height: 46px;
  border: 1px solid #444;
  border-right: 0;
  background: #080808;
  color: #eee;
  font: 11px var(--font-body);
  padding: 0 14px;
}

.shop-home-newsletter button {
  min-width: 122px;
  border: 0;
  background: #bd1119;
  color: #fff;
  font: 14px var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-home-newsletter button:hover {
  background: #e21a25;
}

@media (max-width: 900px) {
  .shop-home-hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .shop-home-hero-copy {
    padding-left: 30px;
  }

  .shop-home-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-home-editions {
    grid-template-columns: 1fr;
  }

  .shop-home-edition-intro {
    max-width: 400px;
  }

  .shop-home-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-home-benefits article:nth-child(2) {
    border-right: 0;
  }

  .shop-home-newsletter {
    margin-right: 24px;
    margin-left: 24px;
  }
}

@media (max-width: 620px) {
  .shop-home-hero {
    display: block;
    min-height: 530px;
  }

  .shop-home-hero-copy {
    position: relative;
    z-index: 3;
    padding: 55px 24px;
  }

  .shop-home-hero h1 {
    font-size: 83px;
  }

  .shop-home-hero-art {
    position: absolute;
    inset: 0;
    opacity: 0.45;
  }

  .shop-home-hero-product-1 {
    right: -6%;
    width: 86%;
  }

  .shop-home-hero-product-2,
  .shop-home-note,
  .shop-home-hero-frame {
    display: none;
  }

  .shop-home-benefits {
    margin: 0 20px;
    grid-template-columns: 1fr;
  }

  .shop-home-benefits article,
  .shop-home-benefits article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #303030;
  }

  .shop-home-section {
    padding: 38px 20px 15px;
  }

  .shop-home-category-grid {
    gap: 9px;
  }

  .shop-home-category-card {
    min-height: 220px;
  }

  .shop-home-category-copy strong {
    font-size: 21px;
  }

  .shop-home-editions {
    padding: 32px 20px;
  }

  .shop-home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .shop-home-promos {
    grid-template-columns: 1fr;
    padding: 0 20px 30px;
  }

  .shop-home-newsletter {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 20px 30px;
  }

  .shop-home-newsletter form {
    width: 100%;
  }

  .shop-home-newsletter button {
    min-width: 104px;
  }
}

/* Product detail page */
.woocommerce-Price-currencySymbol {
  margin: 0 3px;
  font-style: normal;
}

.price del,
.shop-price del,
.shop-pdp-price del,
.shop-home-product-card del,
.shop-pdp-related-card del,
.woocommerce-variation-price del {
  color: #777;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price ins,
.shop-price ins,
.shop-pdp-price ins,
.shop-home-product-card ins,
.shop-pdp-related-card ins,
.woocommerce-variation-price ins {
  color: #e02028;
  text-decoration: none;
}

.shop-product-badge--limited,
.shop-pdp-badge--limited,
.shop-home-product-badge--limited,
.shop-pdp-related-badge--limited {
  background: #741117;
  color: #fff;
}

.shop-pdp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  padding-top: 24px;
  padding-bottom: 16px;
}

.shop-pdp-breadcrumb {
  margin: 0;
}

.shop-pdp-adjacent {
  display: flex;
  gap: 20px;
}

.shop-pdp-adjacent a {
  color: #bbb;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-pdp-adjacent a:hover {
  color: #d71920;
}

.shop-pdp-main {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(30px, 5vw, 70px);
  max-width: var(--container);
  padding-top: 0;
  padding-bottom: 42px;
}

.shop-pdp-gallery {
  min-width: 0;
}

.shop-pdp-main-image {
  position: relative;
  display: block;
  aspect-ratio: 0.94;
  overflow: hidden;
  border: 1px solid #484848;
  background: #000;
  cursor: zoom-in;
}

.shop-pdp-main-image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.08) grayscale(0.3);
}

.shop-pdp-badge {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 13px;
  padding: 2px 7px;
  background: #e8e8e8;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.shop-pdp-thumbnails button {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid #444;
  background: #111;
  cursor: pointer;
}

.shop-pdp-thumbnails button.is-active,
.shop-pdp-thumbnails button:hover {
  border-color: #eee;
}

.shop-pdp-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.45);
}

.shop-pdp-lightbox-item {
  display: none;
}

.shop-pdp-summary {
  padding-top: 4px;
}

.shop-pdp-category {
  color: #d71920;
  font-size: 11px;
  text-decoration: none;
}

.shop-pdp-summary h1 {
  margin: 9px 0 12px;
  color: #eee;
  font-family: "Oswald", sans-serif;
  font-size: clamp(35px, 4vw, 57px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.02em;
}

.shop-pdp-price {
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #3a3a3a;
  color: #e02028;
  font-size: 20px;
  font-weight: 700;
}

.shop-pdp-summary-copy {
  color: #c4c4c4;
  font-size: 12px;
  line-height: 1.8;
}

.shop-pdp-summary-copy p {
  margin: 0 0 13px;
}

.shop-pdp-features,
.shop-pdp-delivery {
  margin: 14px 0;
  padding: 0;
  list-style: none;
  color: #c7c7c7;
  font-size: 11px;
  line-height: 1.9;
}

.shop-pdp-features li::before {
  margin-right: 9px;
  color: #e5e5e5;
  content: "◉";
}

.shop-pdp-delivery {
  border-top: 1px solid #333;
  padding-top: 13px;
  color: #aaa;
  font-size: 10px;
}

.shop-pdp-delivery li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.shop-pdp-delivery svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #d71920;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.shop-pdp-cart form.cart {
  margin: 20px 0 0;
}

.shop-pdp-cart .variations {
  width: 100%;
  margin: 0 0 13px;
  border: 0;
}

.shop-pdp-cart .variations tr {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.shop-pdp-cart .variations td,
.shop-pdp-cart .variations th {
  padding: 0;
  text-align: left;
}

.shop-pdp-cart .variations label {
  color: #eee;
  font:
    12px "Oswald",
    sans-serif;
  text-transform: uppercase;
}

.shop-pdp-cart .variations select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #555;
  border-radius: 0;
  background: #0b0b0b;
  color: #eee;
  font: 12px var(--font-body);
  padding: 0 10px;
}

.shop-pdp-cart .reset_variations {
  display: inline-block;
  margin-top: 4px;
  color: #ccc;
  font-size: 10px;
}

.shop-pdp-cart .quantity {
  display: inline-flex;
  align-items: stretch;
  height: 48px;
  margin: 0 12px 0 0;
  border: 1px solid #555;
  background: #0b0b0b;
  vertical-align: top;
}

.shop-pdp-cart .quantity::before {
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-right: 1px solid #3c3c3c;
  color: #bbb;
  content: "KOLIČINA";
  font:
    11px "Oswald",
    sans-serif;
  letter-spacing: 0.06em;
}

.shop-pdp-cart .quantity input.qty {
  width: 42px;
  min-width: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font:
    16px "Oswald",
    sans-serif;
  text-align: center;
  appearance: textfield;
}

.shop-pdp-cart .quantity input.qty::-webkit-inner-spin-button,
.shop-pdp-cart .quantity input.qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.shop-pdp-cart .qty-button {
  display: grid;
  width: 38px;
  padding: 0;
  border: 0;
  border-left: 1px solid #3c3c3c;
  background: transparent;
  color: #eee;
  font:
    24px/1 Arial,
    sans-serif;
  place-items: center;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.shop-pdp-cart .qty-button--decrease {
  border-right: 1px solid #3c3c3c;
}

.shop-pdp-cart .qty-button:hover,
.shop-pdp-cart .qty-button:focus-visible {
  outline: 0;
  background: #d71920;
  color: #fff;
}

.shop-pdp-cart .qty-button:disabled {
  color: #555;
  cursor: not-allowed;
}

.shop-pdp-cart .qty-button:disabled:hover {
  background: transparent;
}

.shop-pdp-cart .single_add_to_cart_button,
.shop-pdp-cart .single_add_to_cart_button.button {
  width: 100%;
  min-height: 49px;
  border: 0;
  border-radius: 0;
  background: #d71920 !important;
  color: #fff;
  font: 18px var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-pdp-cart .single_add_to_cart_button:hover,
.shop-pdp-cart .single_add_to_cart_button.button:hover {
  background: #ef252c !important;
}

.shop-pdp-cart .woocommerce-variation-description {
  color: #aaa;
  font-size: 10px;
}

.shop-pdp-cart .woocommerce-variation-price {
  color: #e02028;
  font-size: 15px;
}

.shop-pdp-cart .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 12px;
}

.shop-pdp-cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  flex: 1;
  width: auto;
}

.shop-pdp-cart form.cart:not(.variations_form) {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.shop-pdp-cart form.cart:not(.variations_form) .single_add_to_cart_button {
  flex: 1;
  width: auto;
}

.shop-pdp-lower {
  max-width: var(--container);
  padding-top: 4px;
  padding-bottom: 46px;
  border-top: 1px solid #333;
}

.shop-pdp-description {
  padding-top: 22px;
}

.shop-pdp-description h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
}

.shop-pdp-description .shop-title-brush {
  width: 52px;
  height: 6px;
  margin: 5px 0 16px;
}

.shop-pdp-description > div,
.shop-pdp-description ul {
  max-width: 680px;
  color: #bbb;
  font-size: 11px;
  line-height: 1.8;
}

.shop-pdp-description > div p {
  margin: 0 0 12px;
}

.shop-pdp-description ul {
  margin: 0;
  padding-left: 18px;
}

.shop-pdp-related {
  max-width: var(--container);
  padding-top: 25px;
  padding-bottom: 48px;
}

.shop-pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.shop-pdp-related-card {
  min-width: 0;
  border: 1px solid #444;
  background: #080808;
}

.shop-pdp-related-card > a {
  position: relative;
  display: block;
  aspect-ratio: 0.86;
  overflow: hidden;
  background: #080808;
}

.shop-pdp-related-card > a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.45);
  transition: transform 0.25s ease;
}

.shop-pdp-related-card:hover > a img {
  transform: scale(1.04);
}

.shop-pdp-related-card h3 {
  min-height: 38px;
  margin: 10px 10px 4px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
}

.shop-pdp-related-card h3 a {
  color: #eee;
  text-decoration: none;
}

.shop-pdp-related-card p {
  margin: 0 10px 12px;
  color: #e02028;
  font-size: 11px;
  font-weight: 700;
}

.shop-pdp-all-link {
  display: block;
  width: max-content;
  min-width: 210px;
  margin: 20px auto 0;
  padding: 7px 14px;
  border: 1px solid #444;
  color: #ddd;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}

.shop-pdp-all-link b {
  margin-left: 8px;
  color: #d71920;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 850px) {
  .shop-pdp-main {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .shop-pdp-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-pdp-top {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 580px) {
  .shop-pdp-top {
    display: block;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .shop-pdp-adjacent {
    margin-top: 12px;
    gap: 13px;
  }

  .shop-pdp-adjacent a {
    font-size: 10px;
  }

  .shop-pdp-main {
    padding: 0 20px 34px;
  }

  .shop-pdp-summary h1 {
    font-size: 38px;
  }

  .shop-pdp-lower {
    padding: 0 20px 35px;
  }

  .shop-pdp-related {
    padding: 0 20px 35px;
  }

  .shop-pdp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-pdp-related-card h3 {
    font-size: 16px;
  }

  .shop-pdp-thumbnails {
    gap: 6px;
  }
}

+
/* WooCommerce cart */
.shop-cart {
  padding-bottom: 0;
  background: #050505 url("../img/grunge-bg.jpg") center top/1600px auto
    repeat-y;
}

.shop-cart-hero {
  padding-top: 28px;
  padding-bottom: 26px;
}

.shop-cart-breadcrumb {
  margin-bottom: 24px;
}

/* WooCommerce prints this wrapper even when there are no notices. */
body.woocommerce-cart .woocommerce-notices-wrapper:empty {
  display: none;
}

.shop-cart-hero h1 {
  margin: 0;
  color: #f2f2f2;
  font:
    400 clamp(64px, 8vw, 106px) / 0.82 "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.03em;
}

.shop-cart-hero .shop-title-brush {
  width: 165px;
  height: 9px;
  margin: 14px 0;
}

.shop-cart-hero > p {
  max-width: 350px;
  margin: 0;
  color: #b8b8b8;
  font:
    11px/1.75 "IBM Plex Mono",
    monospace;
}

.shop-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 30px;
  align-items: start;
  padding-top: 0;
  padding-bottom: 42px;
}

.shop-cart-table {
  border: 1px solid #353535;
  background: rgba(5, 5, 5, 0.78);
}

.shop-cart-table-head,
.shop-cart-item {
  display: grid;
  grid-template-columns: minmax(350px, 1fr) 100px 120px 80px;
  gap: 15px;
  align-items: center;
}

.shop-cart-table-head {
  min-height: 39px;
  padding: 0 18px;
  border-bottom: 1px solid #3a3a3a;
  color: #bdbdbd;
  font:
    10px "Oswald",
    sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-cart-table-head span:not(:first-child),
.shop-cart-price,
.shop-cart-quantity,
.shop-cart-line-total {
  text-align: center;
}

.shop-cart-item {
  min-height: 137px;
  padding: 14px 18px;
  border-bottom: 1px solid #292929;
}

.shop-cart-item:last-child {
  border-bottom: 0;
}

.shop-cart-product {
  display: grid;
  grid-template-columns: 28px 100px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-width: 0;
}

.shop-cart-remove {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #ddd !important;
  font:
    20px/1 Arial,
    sans-serif;
  text-decoration: none;
}

.shop-cart-remove:hover {
  color: #e02028 !important;
}

.shop-cart-product-image {
  width: 100px;
  height: 100px;
  border: 1px solid #353535;
  background: #080808;
}

.shop-cart-product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.45) contrast(1.08);
}

.shop-cart-product-copy h2 {
  margin: 0 0 8px;
  color: #eee;
  font:
    400 21px/1.08 "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.025em;
}

.shop-cart-product-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.shop-cart-product-copy dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 7px;
  margin: 0;
  color: #a9a9a9;
  font:
    10px/1.45 "IBM Plex Mono",
    monospace;
}

.shop-cart-product-copy dl.variation dt {
  font-weight: 400;
}

.shop-cart-product-copy dl.variation dd {
  margin: 0;
}

.shop-cart-price,
.shop-cart-line-total {
  color: #e02028;
  font:
    700 11px "IBM Plex Mono",
    monospace;
}

.shop-cart-line-total {
  color: #ddd;
}

.shop-cart-quantity .quantity {
  display: inline-flex;
  height: 39px;
  align-items: stretch;
  border: 1px solid #555;
  background: #090909;
}

.shop-cart-quantity input.qty {
  width: 42px;
  min-width: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-right: 1px solid #3c3c3c;
  border-left: 1px solid #3c3c3c;
  background: transparent;
  color: #fff;
  font:
    15px "Oswald",
    sans-serif;
  text-align: center;
  appearance: textfield;
}

.shop-cart-quantity input.qty::-webkit-inner-spin-button,
.shop-cart-quantity input.qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.shop-cart-quantity .qty-button {
  width: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #eee;
  font:
    23px/1 Arial,
    sans-serif;
  cursor: pointer;
}

.shop-cart-quantity .qty-button:hover {
  background: #d71920;
}

.shop-cart-single-quantity {
  color: #ddd;
  font:
    13px "IBM Plex Mono",
    monospace;
}

.shop-cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-top: 17px;
}

.shop-cart-actions .coupon > span {
  display: block;
  margin-bottom: 7px;
  color: #ddd;
  font:
    10px "Oswald",
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-cart-actions .coupon > div {
  display: flex;
}

.shop-cart-actions input {
  width: 220px;
  height: 39px;
  border: 1px solid #555;
  border-right: 0;
  border-radius: 0;
  background: #080808;
  color: #eee;
  font:
    10px "IBM Plex Mono",
    monospace;
  padding: 0 11px;
}

.shop-cart-actions .button {
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid #777;
  border-radius: 0;
  background: transparent;
  color: #f0f0f0;
  font:
    12px "Oswald",
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-cart-actions .coupon .button {
  border-color: #555;
}

.shop-cart-actions .button b {
  margin-left: 9px;
  color: #e02028;
  font:
    18px/1 Arial,
    sans-serif;
}

.shop-cart-actions .button:not(:disabled):hover {
  border-color: #d71920;
  background: #d71920;
}

.shop-cart-actions .button:hover b {
  color: #fff;
}

.shop-cart-update:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.shop-cart-summary {
  display: grid;
  gap: 17px;
}

.shop-cart-thanks {
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 77px;
  padding: 15px 17px;
  border: 1px solid #555;
  background: rgba(7, 7, 7, 0.72);
}

.shop-cart-thanks span {
  color: #eee;
  font-size: 35px;
  line-height: 1;
}

.shop-cart-thanks p {
  margin: 0;
  color: #eee;
  font:
    15px/1.45 "Oswald",
    sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shop-cart-summary .cart_totals {
  padding: 20px;
  border: 1px solid #555;
  background: rgba(5, 5, 5, 0.88);
}

.shop-cart-summary .cart_totals > h2 {
  margin: 0;
  color: #eee;
  font:
    400 25px "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.03em;
}

.shop-cart-summary .cart_totals .shop-title-brush {
  width: 72px;
  height: 6px;
  margin: 6px 0 16px;
}

.shop-cart-totals-table {
  width: 100%;
  border-collapse: collapse;
  color: #b9b9b9;
  font:
    11px "IBM Plex Mono",
    monospace;
}

.shop-cart-totals-table th,
.shop-cart-totals-table td {
  padding: 8px 0;
  font-weight: 400;
}

.shop-cart-totals-table th {
  text-align: left;
}

.shop-cart-totals-table td {
  color: #ddd;
  text-align: right;
}

.shop-cart-totals-table .woocommerce-shipping-totals td {
  font-size: 10px;
}

.shop-cart-totals-table .woocommerce-shipping-totals ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-cart-totals-table .woocommerce-shipping-totals li {
  margin: 0 0 5px;
}

.shop-cart-totals-table .woocommerce-shipping-destination {
  margin: 7px 0 0;
  color: #858585;
}

.shop-cart-totals-table .shipping-calculator-button,
.shop-cart-totals-table .woocommerce-remove-coupon {
  color: #ddd;
}

.shop-cart-totals-table .order-total {
  border-top: 1px solid #353535;
}

.shop-cart-totals-table .order-total th,
.shop-cart-totals-table .order-total td {
  padding-top: 18px;
  color: #eee;
  font:
    16px "Oswald",
    sans-serif;
  text-transform: uppercase;
}

.shop-cart-totals-table .order-total td {
  color: #e02028;
  font:
    23px "IBM Plex Mono",
    monospace;
}

.shop-cart-tax-note {
  margin: 4px 0 17px;
  color: #888;
  font:
    9px/1.5 "IBM Plex Mono",
    monospace;
}

.shop-cart-summary .wc-proceed-to-checkout {
  margin: 0;
}

.shop-cart-summary .checkout-button {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  background: #c7121a !important;
  color: #fff !important;
  font:
    16px "Bebas Neue",
    Impact,
    sans-serif !important;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-cart-summary .checkout-button::after {
  margin-left: 20px;
  content: "→";
  font:
    21px/1 Arial,
    sans-serif;
}

.shop-cart-summary .checkout-button:hover {
  background: #e02028 !important;
}

.shop-cart-secure {
  display: flex;
  gap: 13px;
  align-items: start;
  padding: 18px;
  border: 1px solid #444;
  background: rgba(5, 5, 5, 0.7);
}

.shop-cart-secure svg {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #eee;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.shop-cart-secure h2 {
  margin: 0 0 5px;
  color: #eee;
  font:
    18px "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.03em;
}

.shop-cart-secure p {
  margin: 0;
  color: #aaa;
  font:
    9px/1.6 "IBM Plex Mono",
    monospace;
}

.shop-cart-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid #333;
}

.shop-cart-benefits article {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  gap: 12px;
  padding: 20px;
  border-right: 1px solid #333;
}

.shop-cart-benefits article:last-child {
  border-right: 0;
}

.shop-cart-benefits svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #eee;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.shop-cart-benefits h2 {
  margin: 0 0 4px;
  color: #eee;
  font:
    19px "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.03em;
}

.shop-cart-benefits p {
  margin: 0;
  color: #aaa;
  font:
    9px/1.5 "IBM Plex Mono",
    monospace;
}

.shop-cart-empty-panel {
  display: grid;
  justify-items: center;
  margin-bottom: 48px;
  padding: 68px 25px;
  border: 1px solid #3b3b3b;
  background: #080808;
  text-align: center;
}

.shop-cart-empty-panel svg {
  width: 46px;
  height: 46px;
  margin-bottom: 17px;
  fill: none;
  stroke: #e02028;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.shop-cart-empty-panel h2 {
  margin: 0 0 8px;
  color: #eee;
  font:
    400 32px/1 "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.03em;
}

.shop-cart-empty-panel p {
  margin: 0 0 23px;
  color: #aaa;
  font:
    11px "IBM Plex Mono",
    monospace;
}

.shop-cart-return {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 24px;
  padding: 0 17px;
  border: 0 !important;
  border-radius: 0 !important;
  background: #d71920 !important;
  color: #fff !important;
  font:
    16px "Bebas Neue",
    Impact,
    sans-serif !important;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-cart-return:hover {
  background: #ef252c !important;
}

.shop-cart-return span {
  font:
    21px/1 Arial,
    sans-serif;
}

body.woocommerce-cart .content-wrap {
  max-width: none;
  padding: 0;
}

@media (min-width: 651px) {
  body.woocommerce-cart .site-header {
    border-bottom-color: transparent;
  }
}

/* WooCommerce notices */
.woocommerce-notices-wrapper {
  width: min(1160px, calc(100% - 48px));
  margin: 22px auto 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  margin: 0 0 14px !important;
  padding: 14px 18px 14px 52px !important;
  border: 1px solid #4a4a4a !important;
  border-left: 3px solid #d71920 !important;
  border-radius: 0 !important;
  background: #080808 !important;
  box-shadow: none !important;
  color: #ededed !important;
  font:
    11px/1.55 "IBM Plex Mono",
    monospace;
  list-style: none;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  color: #e02028 !important;
  font:
    18px/19px Arial,
    sans-serif;
}

.woocommerce-message::before {
  content: "✓";
}

.woocommerce-info::before {
  content: "i";
  border: 1px solid currentcolor;
  border-radius: 50%;
  font-size: 13px;
  text-align: center;
}

.woocommerce-error::before {
  content: "!";
  border: 1px solid currentcolor;
  border-radius: 50%;
  font-size: 13px;
  text-align: center;
}

.woocommerce-error {
  border-left-color: #ef252c !important;
  color: #fff !important;
}

.woocommerce-message a:not(.button),
.woocommerce-info a:not(.button),
.woocommerce-error a:not(.button) {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #d71920;
  text-underline-offset: 3px;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  order: 2;
  margin-left: auto !important;
  padding: 9px 13px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #d71920 !important;
  color: #fff !important;
  font:
    13px "Bebas Neue",
    Impact,
    sans-serif !important;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
  background: #ef252c !important;
}

@media (max-width: 650px) {
  .woocommerce-notices-wrapper {
    width: calc(100% - 40px);
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .woocommerce-message .button,
  .woocommerce-info .button,
  .woocommerce-error .button {
    margin-left: 0 !important;
  }
}

/* WooCommerce checkout */
body.woocommerce-checkout .content-wrap {
  max-width: none;
  padding: 0;
}

.shop-checkout {
  padding-bottom: 54px;
  background: #050505;
}

.shop-checkout-hero {
  padding-top: 28px;
  padding-bottom: 26px;
}

.shop-checkout-breadcrumb {
  margin-bottom: 24px;
}

.shop-checkout-hero h1 {
  margin: 0;
  color: #f2f2f2;
  font:
    400 clamp(64px, 8vw, 106px) / 0.82 "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.03em;
}

.shop-checkout-hero .shop-title-brush,
.shop-checkout-review .shop-title-brush {
  display: block;
  width: 165px;
  height: 9px;
  margin: 14px 0;
}

.shop-checkout-hero > p {
  max-width: 420px;
  margin: 0;
  color: #b8b8b8;
  font:
    11px/1.75 "IBM Plex Mono",
    monospace;
}

.shop-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.shop-checkout-details {
  border: 1px solid #3c3c3c;
  background: #080808;
}

.shop-checkout-details .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.shop-checkout-details .col-1,
.shop-checkout-details .col-2 {
  padding: 25px;
}

.shop-checkout-details .col-1 {
  border-right: 1px solid #353535;
}

.shop-checkout h3,
.shop-checkout h2 {
  margin: 0 0 20px;
  color: #eee;
  font:
    400 28px/1 "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-checkout .form-row {
  margin: 0 0 15px;
}

.shop-checkout .form-row label {
  display: block;
  margin: 0 0 7px;
  color: #ddd;
  font:
    11px "Oswald",
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-checkout .form-row .required {
  color: #e02028;
  text-decoration: none;
}

.shop-checkout .form-row input.input-text,
.shop-checkout .form-row textarea,
.shop-checkout .form-row select,
.shop-checkout .select2-selection {
  width: 100%;
  min-height: 42px;
  border: 1px solid #515151 !important;
  border-radius: 0 !important;
  background: #0b0b0b !important;
  box-shadow: none !important;
  color: #f4f4f4 !important;
  font:
    11px "IBM Plex Mono",
    monospace;
  padding: 0 11px;
}

.shop-checkout .form-row textarea {
  min-height: 86px;
  padding-top: 11px;
  resize: vertical;
}

.shop-checkout .form-row input:focus,
.shop-checkout .form-row textarea:focus,
.shop-checkout .form-row select:focus,
.shop-checkout
  .select2-container--default.select2-container--focus
  .select2-selection {
  border-color: #d71920 !important;
  outline: 0;
}

.shop-checkout .form-row-first,
.shop-checkout .form-row-last {
  width: calc(50% - 7px);
}

.shop-checkout .form-row-first {
  float: left;
}

.shop-checkout .form-row-last {
  float: right;
}

.shop-checkout .form-row-wide {
  clear: both;
}

.shop-checkout .woocommerce-account-fields {
  clear: both;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.shop-checkout .woocommerce-additional-fields {
  margin-top: 24px;
  padding: 25px;
  border-top: 1px solid #353535;
}

.shop-checkout .woocommerce-additional-fields h3 {
  font-size: 23px;
}

.shop-checkout .woocommerce-input-wrapper {
  display: block;
}

.shop-checkout .select2-selection__rendered {
  color: #eee !important;
  font:
    11px/40px "IBM Plex Mono",
    monospace !important;
}

.shop-checkout .select2-selection__arrow {
  height: 40px !important;
}

.select2-dropdown {
  border: 1px solid #d71920 !important;
  border-radius: 0 !important;
  background: #0b0b0b !important;
  color: #eee;
}

.select2-results__option--highlighted[aria-selected] {
  background: #d71920 !important;
}

.shop-checkout-review {
  position: sticky;
  top: 18px;
  padding: 25px;
  border: 1px solid #555;
  background: #080808;
}

.shop-checkout-review h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.shop-checkout-review .shop-title-brush {
  width: 78px;
  height: 6px;
  margin: 8px 0 18px;
}

.shop-checkout-review .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  color: #cfcfcf;
  font:
    11px/1.5 "IBM Plex Mono",
    monospace;
}

.shop-checkout-review .shop_table th,
.shop-checkout-review .shop_table td {
  padding: 11px 0;
  border-bottom: 1px solid #303030;
  text-align: left;
  vertical-align: top;
}

.shop-checkout-review .shop_table td {
  text-align: right;
  color: #f2f2f2;
}

.shop-checkout-review .shop_table .product-name {
  padding-right: 12px;
}

.shop-checkout-review .shop_table .product-quantity {
  color: #aaa;
}

.shop-checkout-review .shop_table .order-total th,
.shop-checkout-review .shop_table .order-total td {
  padding-top: 18px;
  border-bottom: 0;
  color: #fff;
  font:
    18px "Oswald",
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-checkout-review .shop_table .order-total td {
  color: #e02028;
  font:
    700 20px "IBM Plex Mono",
    monospace;
}

.shop-checkout-review .woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-checkout-review .woocommerce-shipping-methods li {
  display: flex;
  gap: 7px;
  margin: 6px 0;
}

.shop-checkout-review .woocommerce-shipping-destination,
.shop-checkout-review .woocommerce-shipping-calculator {
  color: #aaa;
  font-size: 10px;
}

.shop-checkout-review #payment {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #444;
  background: transparent;
}

.shop-checkout-review .wc_payment_methods {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.shop-checkout-review .wc_payment_method {
  padding: 12px;
  border: 1px solid #454545;
  background: #0b0b0b;
}

.shop-checkout-review .wc_payment_method label {
  color: #eee;
  font:
    12px "Oswald",
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-checkout-review .payment_box {
  margin: 10px 0 0;
  color: #aaa;
  font:
    10px/1.55 "IBM Plex Mono",
    monospace;
}

.shop-checkout-review .payment_box p {
  margin: 0;
}

.shop-checkout-review .woocommerce-terms-and-conditions-wrapper {
  margin-top: 15px;
}

.shop-checkout-review .woocommerce-privacy-policy-text,
.shop-checkout-review .woocommerce-terms-and-conditions-checkbox-text {
  color: #aaa;
  font:
    9px/1.55 "IBM Plex Mono",
    monospace;
}

.shop-checkout-review .woocommerce-privacy-policy-text a,
.shop-checkout-review .woocommerce-terms-and-conditions-checkbox-text a {
  color: #eee;
  text-decoration-color: #d71920;
  text-underline-offset: 3px;
}

/* stylelint-disable-next-line selector-id-pattern -- WooCommerce exposes this fixed checkout ID. */
.shop-checkout-review #place_order {
  width: 100%;
  min-height: 49px;
  margin-top: 16px;
  border: 0;
  border-radius: 0;
  background: #d71920 !important;
  color: #fff !important;
  font:
    18px "Bebas Neue",
    Impact,
    sans-serif !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

/* stylelint-disable-next-line selector-id-pattern -- WooCommerce exposes this fixed checkout ID. */
.shop-checkout-review #place_order:hover {
  background: #ef252c !important;
}

.shop-checkout .woocommerce-form-login-toggle,
.shop-checkout .woocommerce-form-coupon-toggle {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 12px;
}

.shop-checkout .woocommerce-form-login,
.shop-checkout .checkout_coupon {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 20px !important;
  padding: 22px;
  border: 1px solid #444;
  border-radius: 0;
  background: #080808;
  color: #ddd;
}

.shop-checkout .checkout_coupon {
  display: flex;
  gap: 10px;
  align-items: end;
}

.shop-checkout .checkout_coupon .form-row {
  flex: 1;
  margin: 0;
}

.shop-checkout .checkout_coupon .button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #d71920;
  background: #d71920;
  color: #fff;
  font:
    14px "Bebas Neue",
    Impact,
    sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .shop-checkout-layout {
    grid-template-columns: 1fr;
  }

  .shop-checkout-review {
    position: static;
  }

  .shop-checkout-details .col2-set {
    grid-template-columns: 1fr;
  }

  .shop-checkout-details .col-1 {
    border-right: 0;
    border-bottom: 1px solid #353535;
  }
}

@media (max-width: 650px) {
  .shop-checkout-hero,
  .shop-checkout-form {
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 0;
  }

  .shop-checkout-hero {
    padding-top: 23px;
  }

  .shop-checkout-hero h1 {
    font-size: 68px;
  }

  .shop-checkout-details .col-1,
  .shop-checkout-details .col-2,
  .shop-checkout-review {
    padding: 19px;
  }

  .shop-checkout .form-row-first,
  .shop-checkout .form-row-last {
    float: none;
    width: 100%;
  }

  .shop-checkout .woocommerce-form-login-toggle,
  .shop-checkout .woocommerce-form-coupon-toggle,
  .shop-checkout .woocommerce-form-login,
  .shop-checkout .checkout_coupon {
    width: calc(100% - 40px);
  }

  .shop-checkout .checkout_coupon {
    display: block;
  }

  .shop-checkout .checkout_coupon .button {
    width: 100%;
    margin-top: 10px;
  }
}

@media (min-width: 901px) {
  .shop-checkout-details .col2-set {
    grid-template-columns: 1fr;
  }

  .shop-checkout-details .col-1 {
    border-right: 0;
    border-bottom: 1px solid #353535;
  }

  .shop-checkout-details .col-2 {
    padding-top: 22px;
  }

  .shop-checkout-details .woocommerce-billing-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }

  .shop-checkout-details
    .woocommerce-billing-fields__field-wrapper
    .form-row-wide {
    grid-column: 1/-1;
  }

  .shop-checkout-details .woocommerce-billing-fields__field-wrapper .form-row {
    float: none !important;
    width: auto !important;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .shop-cart-layout {
    grid-template-columns: 1fr;
  }

  .shop-cart-summary {
    grid-template-columns: 1fr 1fr;
  }

  .shop-cart-summary .cart_totals {
    grid-row: span 2;
  }

  .shop-cart-table-head,
  .shop-cart-item {
    grid-template-columns: minmax(280px, 1fr) 95px 120px 72px;
  }
}

@media (max-width: 650px) {
  .shop-cart-hero,
  .shop-cart-layout,
  .shop-cart-benefits {
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 0;
  }

  .shop-cart-hero {
    padding-top: 23px;
  }

  .shop-cart-hero h1 {
    font-size: 68px;
  }

  .shop-cart-table {
    border-right: 0;
    border-left: 0;
  }

  .shop-cart-table-head {
    display: none;
  }

  .shop-cart-item {
    grid-template-columns: 1fr 92px;
    gap: 12px;
    min-height: 0;
    padding: 14px 0;
  }

  .shop-cart-product {
    grid-column: 1/-1;
    grid-template-columns: 25px 82px minmax(0, 1fr);
    gap: 10px;
  }

  .shop-cart-product-image {
    width: 82px;
    height: 82px;
  }

  .shop-cart-product-copy h2 {
    font-size: 19px;
  }

  .shop-cart-price,
  .shop-cart-quantity {
    text-align: left;
  }

  .shop-cart-line-total {
    display: none;
  }

  .shop-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-cart-actions .coupon > div {
    width: 100%;
  }

  .shop-cart-actions input {
    width: 100%;
  }

  .shop-cart-update {
    align-self: end;
  }

  .shop-cart-summary {
    grid-template-columns: 1fr;
  }

  .shop-cart-summary .cart_totals {
    grid-row: auto;
  }

  .shop-cart-benefits {
    grid-template-columns: 1fr;
  }

  .shop-cart-benefits article {
    border-right: 0;
    border-bottom: 1px solid #333;
  }

  .shop-cart-benefits article:last-child {
    border-bottom: 0;
  }
}

.shop-cart-cross-sells {
  padding-top: 0;
  padding-bottom: 38px;
}

.shop-cart-cross-sells-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.shop-cart-cross-sell-card {
  min-width: 0;
  border: 1px solid #444;
  background: #080808;
}

.shop-cart-cross-sell-image {
  position: relative;
  display: block;
  aspect-ratio: 0.86;
  overflow: hidden;
}

.shop-cart-cross-sell-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.42);
  transition: transform 0.25s ease;
}

.shop-cart-cross-sell-card:hover .shop-cart-cross-sell-image img {
  transform: scale(1.035);
}

.shop-cart-cross-sell-copy {
  padding: 10px;
}

.shop-cart-cross-sell-copy h3 {
  min-height: 38px;
  margin: 0 0 5px;
  color: #eee;
  font:
    400 17px/1.1 "Bebas Neue",
    Impact,
    sans-serif;
}

.shop-cart-cross-sell-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.shop-cart-cross-sell-copy p {
  margin: 0;
  color: #e02028;
  font:
    700 11px "IBM Plex Mono",
    monospace;
}

@media (max-width: 900px) {
  .shop-cart-cross-sells-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .shop-cart-cross-sells {
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 0;
  }

  .shop-cart-cross-sells-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Checkout layout safeguards: WooCommerce may render an empty notices wrapper. */
body.woocommerce-checkout .woocommerce-notices-wrapper:empty,
body.woocommerce-checkout
  .woocommerce-notices-wrapper:not(
    :has(.woocommerce-message, .woocommerce-info, .woocommerce-error)
  ) {
  display: none;
}

/* Keep every customer-details block within the full checkout panel width. */
.shop-checkout-details,
.shop-checkout-details > .col2-set,
.shop-checkout-details .col-1,
.shop-checkout-details .col-2,
.shop-checkout-details .woocommerce-billing-fields,
.shop-checkout-details .woocommerce-shipping-fields,
.shop-checkout-details .woocommerce-additional-fields,
.shop-checkout-details .woocommerce-billing-fields__field-wrapper,
.shop-checkout-details .woocommerce-shipping-fields__field-wrapper {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}

.shop-checkout-details > .col2-set {
  display: grid;
  float: none;
  margin: 0;
}

.shop-checkout-details > .col2-set > * {
  float: none !important;
  margin: 0;
}

/* Override WooCommerce's default two-column width for this single-panel layout. */
body.woocommerce-checkout .shop-checkout-details .col2-set .col-1,
body.woocommerce-checkout .shop-checkout-details .col2-set .col-2 {
  max-width: none;
  width: 100% !important;
}

.shop-checkout-details .woocommerce-input-wrapper,
.shop-checkout-details .select2-container {
  max-width: none;
  width: 100% !important;
}

@media (max-width: 900px) {
  .shop-checkout-layout {
    gap: 20px;
  }
}

@media (max-width: 650px) {
  .shop-checkout {
    padding-bottom: 36px;
  }

  .shop-checkout-details .woocommerce-additional-fields {
    padding: 19px;
  }
}

/* Responsive YouTube player for single episodes. */
.episode-player-embed {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.episode-player-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media (max-width: 580px) {
  .episode-player-embed {
    min-height: 0;
  }
}

/* Mobile layout polish: tighter rhythm without reducing touch targets. */
@media (max-width: 620px) {
  .content-band {
    padding-bottom: 36px;
    padding-top: 36px;
  }

  .episode-breadcrumb {
    font-size: 0.68rem;
    gap: 6px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .single-episode {
    padding-top: 16px;
  }

  .single-episode-hero {
    gap: 24px;
    margin-bottom: 26px;
  }

  .episodes-hero {
    padding-bottom: 32px;
    padding-top: 38px;
  }

  .episodes-hero h1 {
    font-size: clamp(4.7rem, 19vw, 5.6rem);
    margin-bottom: 14px;
  }

  .episodes-hero p,
  .about-mission {
    line-height: 1.65;
  }

  .episodes-clock {
    margin-top: 18px;
    max-width: 180px;
    opacity: 0.78;
  }

  .episodes-toolbar {
    gap: 16px;
    margin-bottom: 20px;
  }

  .episode-filters {
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scrollbar-width: none;
  }

  .episode-filters::-webkit-scrollbar {
    display: none;
  }

  .episode-filters a {
    flex: 0 0 auto;
    line-height: 1.2;
    padding: 9px 11px;
  }

  .about-hero-page {
    padding-bottom: 46px;
    padding-top: 38px;
  }

  .about-hero-copy,
  .about-lead,
  .about-mission,
  .guest-role,
  .guest-facts dd {
    overflow-wrap: anywhere;
  }

  .about-hero-page h1 {
    line-height: 0.88;
    margin-bottom: 22px;
  }

  .about-lead {
    line-height: 1.3;
  }

  .about-mission p {
    margin-bottom: 12px;
  }

  .guest-hero,
  .guests-hero {
    padding-bottom: 32px;
    padding-top: 38px;
  }

  .guest-back-link {
    margin-bottom: 24px;
  }

  .guest-hero h1 {
    font-size: clamp(4.4rem, 19vw, 5.8rem);
    margin-bottom: 16px;
  }

  .guest-role {
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .guest-facts {
    gap: 13px;
  }
}
