@charset "UTF-8";
.btn-border-pulse {
  --border: 1;
  --duration: 0.6;
  --delay: 0.1;
  --bg: hsl(0 0% 92%);
  --accent: color-mix(in hsl, var(--bg), #000 16%);
  background: linear-gradient(var(--bg) 0 100%) padding-box, linear-gradient(hsla(0, 0%, 0%, 0.16) 0 100%) border-box;
  border-radius: 6px;
  user-select: none;
  outline-width: 0px;
  font-size: 0.875rem;
  outline-color: color-mix(in hsl, currentColor, rgba(0, 0, 0, 0) 75%);
  outline-offset: 4px;
  border: calc(var(--border) * 1px) solid rgba(0, 0, 0, 0);
  cursor: pointer;
  height: 34px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #000;
  text-decoration: none;
  transition-property: scale, translate;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 0.16s;
}
.btn-border-pulse:hover, .btn-border-pulse:focus, .btn-border-pulse:active {
  text-decoration: none;
  color: #000;
}
.btn-border-pulse::after, .btn-border-pulse::before {
  content: "";
  position: absolute;
  inset: calc(var(--border) * -1px);
  opacity: 0;
  border-radius: inherit;
}
.btn-border-pulse::after {
  border: calc(var(--border) * 1px) solid #000;
  z-index: 2;
  transition: opacity calc(var(--duration, 0.6) * 1s) calc(var(--delay, 0.1) * 1s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-border-pulse::before {
  z-index: 3;
  background: var(--accent);
  transition: opacity 0.16s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.btn-border-pulse:is(:hover, :focus-visible)::before {
  opacity: 0.26;
}
.btn-border-pulse span {
  padding: 0;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: inherit;
  z-index: 4;
}
.btn-border-pulse:active {
  scale: 0.98;
  translate: 0 1px;
}
.btn-border-pulse:active::after, .btn-border-pulse:active::before {
  opacity: 1;
  transition: opacity 0s;
}

.btn-border-pulse--dark {
  --bg: hsl(0 0% 16%);
  --accent: color-mix(in hsl, var(--bg), #fff 16%);
  background: linear-gradient(var(--bg) 0 100%) padding-box, linear-gradient(hsla(0, 0%, 100%, 0.16) 0 100%) border-box;
  color: color-mix(in hsl, #fff, rgba(0, 0, 0, 0) 10%);
}
.btn-border-pulse--dark::after {
  border-color: #fff;
}
.btn-border-pulse--dark:hover, .btn-border-pulse--dark:focus, .btn-border-pulse--dark:active {
  color: color-mix(in hsl, #fff, rgba(0, 0, 0, 0) 10%);
}

.btn-border-pulse--primary {
  --bg: var(--bs-primary, #b21f24);
  --accent: color-mix(in hsl, var(--bg), #fff 20%);
  background: linear-gradient(var(--bg) 0 100%) padding-box, linear-gradient(hsla(0, 0%, 100%, 0.2) 0 100%) border-box;
  color: #fff;
}
.btn-border-pulse--primary::after {
  border-color: #fff;
}
.btn-border-pulse--primary:hover, .btn-border-pulse--primary:focus, .btn-border-pulse--primary:active {
  color: #fff;
}

.btn-border-pulse--gold {
  --bg: #b8a14e;
  --accent: color-mix(in hsl, var(--bg), #fff 20%);
  background: linear-gradient(var(--bg) 0 100%) padding-box, linear-gradient(hsla(0, 0%, 100%, 0.2) 0 100%) border-box;
  color: #fff;
}
.btn-border-pulse--gold::after {
  border-color: #fff;
}
.btn-border-pulse--gold:hover, .btn-border-pulse--gold:focus, .btn-border-pulse--gold:active {
  color: #fff;
}

.btn-border-pulse--platinum {
  --bg: linear-gradient(180deg, #e9e9ec 0%, #b9b9bf 100%);
  --accent: hsl(0 0% 100% / 0.55);
  background: var(--bg) padding-box, linear-gradient(180deg, #d6d6da 0%, #8f8f96 100%) border-box;
  border-color: transparent;
  color: hsl(0, 0%, 12%);
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.12);
}
.btn-border-pulse--platinum::after {
  border-color: hsl(0, 0%, 45%);
}
.btn-border-pulse--platinum::before {
  background: hsla(0, 0%, 100%, 0.55);
}
.btn-border-pulse--platinum:hover, .btn-border-pulse--platinum:focus, .btn-border-pulse--platinum:active {
  color: hsl(0, 0%, 12%);
}

.btn-border-pulse--outline-dark {
  --bg: transparent;
  --accent: hsl(0 0% 16%);
  background: transparent;
  border: 1px solid hsl(0, 0%, 16%);
  color: hsl(0, 0%, 16%);
}
.btn-border-pulse--outline-dark::after {
  border-color: #000;
}
.btn-border-pulse--outline-dark::before {
  background: hsla(0, 0%, 16%, 0.1);
}
.btn-border-pulse--outline-dark:hover, .btn-border-pulse--outline-dark:focus, .btn-border-pulse--outline-dark:active {
  color: hsl(0, 0%, 16%);
}

.btn-border-pulse.dropdown-toggle::after {
  margin-left: 0.5em;
  vertical-align: middle;
}

.btn-border-pulse.dropdown-toggle span {
  display: inline-flex;
  align-items: center;
}

[data-bs-theme=dark] .btn-border-pulse--outline-dark {
  border-color: hsl(0, 0%, 80%);
  color: hsl(0, 0%, 80%);
}
[data-bs-theme=dark] .btn-border-pulse--outline-dark::after {
  border-color: #fff;
}
[data-bs-theme=dark] .btn-border-pulse--outline-dark::before {
  background: hsla(0, 0%, 80%, 0.1);
}
[data-bs-theme=dark] .btn-border-pulse--outline-dark:hover, [data-bs-theme=dark] .btn-border-pulse--outline-dark:focus, [data-bs-theme=dark] .btn-border-pulse--outline-dark:active {
  color: hsl(0, 0%, 80%);
}

.ld-dual {
  --ink: currentColor;
  position: relative;
  width: 52px;
  height: 52px;
}
.ld-dual::before, .ld-dual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}
.ld-dual::before {
  inset: 0;
  border-top-color: var(--ink);
  border-bottom-color: var(--ink);
  animation: ld-dual-spin 1.2s linear infinite;
}
.ld-dual::after {
  inset: 10px;
  border-left-color: color-mix(in srgb, var(--ink) 45%, transparent);
  border-right-color: color-mix(in srgb, var(--ink) 45%, transparent);
  animation: ld-dual-spin 0.8s linear infinite reverse;
}

@keyframes ld-dual-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-border-pulse .ld-dual {
  width: 22px;
  height: 22px;
}
.btn-border-pulse .ld-dual::before {
  border-width: 2px;
}
.btn-border-pulse .ld-dual::after {
  inset: 5px;
  border-width: 2px;
}

.post-image-link {
  transition: opacity 0.2s ease;
}
.post-image-link:hover {
  opacity: 0.6;
}

.post-image-horizontal {
  width: 6rem;
  height: 4rem;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .post-image-horizontal {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }
}

.post-image-list {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
@media (min-width: 768px) {
  .post-image-list {
    width: 16rem;
    height: 10rem;
    aspect-ratio: auto;
  }
}

.post-image-vertical {
  width: 100%;
  object-fit: cover;
}

.post-image-video-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.post-image-video-badge .bi {
  font-size: 1rem;
  line-height: 1;
}

.thm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.thm-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bs-primary, #b21f24);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.thm-badge--gradient {
  background: linear-gradient(135deg, #d32f2f, #ff6b6b);
  text-shadow: 0.45px 0.45px rgba(0, 0, 0, 0.5);
}
.thm-badge--corner {
  position: absolute;
  z-index: 1;
}
.thm-badge--corner.thm-badge--bottom-start {
  left: 0.6rem;
  bottom: 0.6rem;
}
.thm-badge--corner.thm-badge--top-start {
  left: 0.6rem;
  top: 0.6rem;
}
.thm-badge--corner.thm-badge--top-end {
  right: 0.6rem;
  top: 0.6rem;
}
.thm-badge--corner.thm-badge--bottom-end {
  right: 0.6rem;
  bottom: 0.6rem;
}
.thm-badges:has(.thm-badge--corner) {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
}
.thm-badges:has(.thm-badge--corner):has(.thm-badge--top-end), .thm-badges:has(.thm-badge--corner):has(.thm-badge--bottom-end) {
  justify-content: flex-end;
}
.thm-badges:has(.thm-badge--corner):has(.thm-badge--bottom-start) {
  left: 0.6rem;
  bottom: 0.6rem;
}
.thm-badges:has(.thm-badge--corner):has(.thm-badge--top-start) {
  left: 0.6rem;
  top: 0.6rem;
}
.thm-badges:has(.thm-badge--corner):has(.thm-badge--top-end) {
  right: 0.6rem;
  top: 0.6rem;
}
.thm-badges:has(.thm-badge--corner):has(.thm-badge--bottom-end) {
  right: 0.6rem;
  bottom: 0.6rem;
}
.thm-badges:has(.thm-badge--corner) .thm-badge--corner {
  position: static;
}
.thm-badge--compact {
  padding: 2px 7px;
  font-size: 9px;
  line-height: 1.4;
  white-space: nowrap;
}
.thm-badge--compact.thm-badge--bottom-start, .thm-badge--compact.thm-badge--top-start {
  left: 4px;
}
.thm-badge--compact.thm-badge--bottom-start, .thm-badge--compact.thm-badge--bottom-end {
  bottom: 4px;
}
.thm-badge--compact.thm-badge--top-start, .thm-badge--compact.thm-badge--top-end {
  top: 4px;
}
.thm-badge--compact.thm-badge--top-end, .thm-badge--compact.thm-badge--bottom-end {
  right: 4px;
}
.thm-badges:has(.thm-badge--corner.thm-badge--compact) {
  gap: 4px;
}
.thm-badges:has(.thm-badge--corner.thm-badge--compact):has(.thm-badge--bottom-start) {
  left: 4px;
  bottom: 4px;
}
.thm-badges:has(.thm-badge--corner.thm-badge--compact):has(.thm-badge--top-start) {
  left: 4px;
  top: 4px;
}
.thm-badges:has(.thm-badge--corner.thm-badge--compact):has(.thm-badge--top-end) {
  right: 4px;
  top: 4px;
}
.thm-badges:has(.thm-badge--corner.thm-badge--compact):has(.thm-badge--bottom-end) {
  right: 4px;
  bottom: 4px;
}
.thm-badge--label {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
}
.thm-badge--label.thm-badge--compact {
  margin-bottom: 4px;
}
.thm-badge--inline {
  margin-bottom: 14px;
}

.thm-badges:has(.thm-badge--inline) {
  margin-bottom: 14px;
}
.thm-badges:has(.thm-badge--inline) .thm-badge--inline {
  margin-bottom: 0;
}

.thm-vip-badge {
  background-color: #fff;
  border-radius: 0 5px 0 5px;
  height: 24px;
  padding: 6px;
  position: absolute;
  width: auto;
  top: 0;
  right: 0;
}
[data-bs-theme=dark] .thm-vip-badge {
  background-color: #262626;
}

.thm-vip-r {
  border-radius: 0 0 0 5px;
  border-right: 1px solid var(--bs-border-color);
}

.post-eyebrow {
  font-family: var(--font-eyebrow, inherit);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 4px;
}

.post-card-title {
  font-family: var(--font-title);
}

.post-card-author {
  font-family: var(--font-author);
  font-size: 13px;
  line-height: 1.35;
  color: var(--bs-body-color);
}
.post-card-author a {
  color: inherit;
  text-decoration: none;
}

[data-sec=post-card]:has(> .post-image-link) > div:not(.post-image-link) {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 14px;
}

@media (min-width: 768px) {
  [data-sec=post-card]:has(> .post-image-link-horizontal, > .post-image-link-list) > div:not(.post-image-link) {
    padding: 12px 0.8rem 14px 0;
  }
}

.cb-rec-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--bs-card-bg, var(--bs-body-bg));
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg, 0.5rem);
}
.cb-rec-grid-card__media {
  display: block;
}
.cb-rec-grid-card__media .post-image-vertical {
  display: block;
  border-radius: 0;
  height: auto;
  aspect-ratio: 536/311;
}
.cb-rec-grid-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 16px 16px;
}

:root {
  --trending-bar-height: 2.5rem;
}

.trending-bar {
  background-color: var(--bs-body-bg);
  border-top-color: var(--bs-border-color);
  color: var(--bs-body-color);
  font-family: var(--font-title);
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.trending-bar [data-marquee-container],
.trending-bar [data-marquee-content],
.trending-bar [data-marquee-clone],
.trending-bar [data-trending-bar],
.trending-bar [data-trending-bar-items] {
  display: flex;
  flex-flow: row nowrap;
  flex: 0 0 auto;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  min-width: max-content;
}
.trending-bar [data-marquee-separator] {
  flex: 0 0 auto;
  white-space: nowrap;
}
.trending-bar a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  color: var(--bs-body-color);
  font-family: var(--font-title);
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease-in-out;
}
.trending-bar a:hover {
  color: var(--bs-primary);
}
.trending-bar a strong {
  font-family: var(--font-eyebrow, var(--bs-body-font-family));
  font-weight: 700;
}
.trending-bar a .trending-bar-title {
  font-family: var(--font-title);
  line-height: inherit;
}
.trending-bar .text-body-secondary {
  opacity: 0.6;
}

[data-bs-theme=dark] .trending-bar {
  background-color: var(--bs-body-bg);
  border-top-color: var(--bs-border-color);
}
[data-bs-theme=dark] .trending-bar a {
  color: var(--bs-body-color);
}
[data-bs-theme=dark] .trending-bar a:hover {
  color: var(--bs-primary);
}

[data-sec=spotlight-bar] {
  height: 45px;
  font-family: var(--font-eyebrow, inherit);
  transition: background-color 0.2s ease-in-out;
}

.spotlight-item {
  position: relative;
  white-space: nowrap;
  flex: 0 0 auto;
  /*&::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--bs-primary);
      transition: width 0.3s ease-in-out;
  }*/
}
.spotlight-item:hover::before {
  width: 100%;
}

.spotlight-separator {
  white-space: nowrap;
  flex: 0 0 auto;
}

.spotlight-scroll-next {
  display: none;
}

@media (max-width: 767.98px) {
  [data-sec=spotlight-bar] {
    position: relative;
    height: 35px;
  }
  [data-sec=spotlight-bar] > div {
    flex-wrap: nowrap !important;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }
  [data-spotlight-items] {
    flex-wrap: nowrap !important;
    flex: 0 0 auto !important;
    min-width: 0;
    overflow: visible;
  }
  .spotlight-item {
    font-size: 0.75rem !important;
  }
  .spotlight-scroll-next {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3.5rem;
    padding-right: 0.5rem;
    border: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    background: linear-gradient(to right, rgba(var(--bs-body-bg-rgb), 0), var(--bs-body-bg) 65%);
  }
  [data-sec=spotlight-bar].has-scroll-hint .spotlight-scroll-next {
    opacity: 1;
    pointer-events: auto;
  }
  .spotlight-scroll-chevron {
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 2px solid var(--bs-secondary-color);
    border-right: 2px solid var(--bs-secondary-color);
    transform: rotate(45deg);
  }
}
.post-carousel-wrapper .carousel {
  --carousel-progress-duration: 5000ms;
  position: relative;
  overflow: hidden;
  background: #05070d;
}
.post-carousel-wrapper .carousel:hover .carousel-control-prev,
.post-carousel-wrapper .carousel:hover .carousel-control-next {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}
.post-carousel-wrapper .carousel:hover .carousel-indicator-progress::after {
  animation-play-state: paused;
}
.post-carousel-wrapper .carousel-indicators {
  right: 1.5rem;
  bottom: 1.25rem;
  left: 1.5rem;
  gap: 0.45rem;
  margin: 0;
  align-items: center;
}
.post-carousel-wrapper .carousel-indicators [data-bs-target] {
  width: 100%;
  height: 0.28rem;
  margin: 0;
  border: 0;
  border-radius: 999px;
  opacity: 1;
  background: transparent;
  overflow: hidden;
  position: relative;
}
.post-carousel-wrapper .carousel-indicator-progress {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  position: relative;
}
.post-carousel-wrapper .carousel-indicator-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.98);
  transform-origin: left center;
  transform: scaleX(0);
}
.post-carousel-wrapper .carousel-indicators .is-progress-active .carousel-indicator-progress::after {
  animation: carousel-progress var(--carousel-progress-duration) linear forwards;
}
.post-carousel-wrapper .carousel-control-prev,
.post-carousel-wrapper .carousel-control-next {
  top: 50%;
  bottom: auto;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 0.85rem;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.34);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-50%) scale(0.92);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.post-carousel-wrapper .carousel-control-prev:hover,
.post-carousel-wrapper .carousel-control-next:hover {
  background: rgba(7, 12, 22, 0.58);
}
.post-carousel-wrapper .carousel-control-prev-icon,
.post-carousel-wrapper .carousel-control-next-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.carousel-image {
  aspect-ratio: 16/10;
  min-height: 18.5rem;
  object-fit: cover;
}

.post-carousel-link {
  display: block;
  position: relative;
  color: #fff;
}
.post-carousel-link:hover {
  color: #fff;
}

.post-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.08) 0%, rgba(2, 4, 10, 0.16) 44%, rgba(2, 4, 10, 0.88) 100%), linear-gradient(90deg, rgba(2, 4, 10, 0.38) 0%, rgba(2, 4, 10, 0) 46%);
}

.post-carousel-copy {
  position: absolute;
  right: 1.5rem;
  bottom: 3rem;
  left: 1.5rem;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  text-shadow: 0 0.15rem 0.75rem rgba(0, 0, 0, 0.45);
}

.post-carousel-author {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.post-carousel-title {
  display: block;
  max-width: 24rem;
  font-size: clamp(0.9rem, 1.05vw, 1.3rem);
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .carousel-image {
    min-height: 16rem;
    aspect-ratio: 5/4;
  }
  .post-carousel-copy {
    right: 1rem;
    bottom: 2.5rem;
    left: 1rem;
  }
  .post-carousel-title {
    max-width: 100%;
    font-size: clamp(0.75rem, 3.6vw, 1rem);
  }
  .post-carousel-author {
    font-size: 0.56rem;
  }
  .post-carousel-wrapper .carousel-indicators {
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
  }
  .post-carousel-wrapper .carousel-control-prev,
  .post-carousel-wrapper .carousel-control-next {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 0.45rem;
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
    background: rgba(7, 12, 22, 0.4);
  }
}
@keyframes carousel-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.section-title {
  display: flex;
  align-items: center;
}
.section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 2rem;
  background-color: var(--bs-primary);
  margin-right: 1rem;
  flex-shrink: 0;
}

.section-title-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bs-primary);
  font-family: var(--font-title), serif;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

[data-sec=chartbeat-trending-on-thm] .site-logo {
  height: auto;
  width: 77px;
}
[data-sec=chartbeat-trending-on-thm] .cb-trending-horizontal-thumb {
  width: 187px;
}
[data-sec=chartbeat-trending-on-thm] .thumb-img {
  width: 100px;
  height: 70px;
}

[data-sec=chartbeat-trending-on-thm-2] .site-logo {
  height: auto;
  width: 77px;
}
[data-sec=chartbeat-trending-on-thm-2] .site-logo.hotair {
  width: 44px;
}
[data-sec=chartbeat-trending-on-thm-2] .cb-list-rank {
  font-size: 2.5rem;
  min-width: 2rem;
}

[data-sec=chartbeat-list-8] {
  font-size: 0.75rem;
  line-height: 1rem;
}
[data-sec=chartbeat-list-8] .cb-list-heading {
  font-size: 1.5rem;
}
[data-sec=chartbeat-list-8] .cb-list-rank {
  font-size: 1.4rem;
  width: 1.4rem;
  line-height: 1.4rem;
  margin-right: 0.3rem;
}
[data-sec=chartbeat-list-8] .section-header {
  letter-spacing: 1.5px;
  font-size: 1.75rem;
}
[data-sec=chartbeat-list-8] .columnist-group {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
[data-sec=chartbeat-list-8] .row > div:last-child .columnist-group,
[data-sec=chartbeat-list-8] .columnist-group:last-child {
  border-right: none;
}
[data-sec=chartbeat-list-8] .columnist-item {
  font-size: 1.1rem;
  padding: 1.25rem 0.5rem;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  width: 90%;
}
[data-sec=chartbeat-list-8] .columnist-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  width: 90%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
[data-sec=chartbeat-list-8] .columnist-item:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(0.5rem);
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  [data-sec=chartbeat-list-8] .section-header {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  [data-sec=chartbeat-list-8] .row > div:nth-child(2n) .columnist-group,
  [data-sec=chartbeat-list-8] .row > div:nth-child(2n).columnist-group {
    border-right: none;
  }
  [data-sec=chartbeat-list-8] .row > div:nth-child(-n+2) .columnist-group,
  [data-sec=chartbeat-list-8] .row > div:nth-child(-n+2).columnist-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  [data-sec=chartbeat-list-8] .columnist-item {
    font-size: 0.95rem;
    padding: 0.85rem 0.5rem;
  }
  [data-sec=chartbeat-list-8] .columnist-item:not(:last-child)::after {
    width: 95%;
  }
}
@media (max-width: 479.98px) {
  [data-sec=chartbeat-list-8] .columnist-group {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  [data-sec=chartbeat-list-8] .row > div:last-child .columnist-group,
  [data-sec=chartbeat-list-8] .row > div:last-child.columnist-group {
    border-bottom: none;
    margin-bottom: 0;
  }
}

[data-sec=chartbeat-list-1] {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
[data-sec=chartbeat-list-1] .cb-list-rank {
  font-size: 2.8rem;
  width: 2.8rem;
  line-height: 2.8rem;
  margin-right: 0.3rem;
}
[data-sec=chartbeat-list-1] .cb-list-icon {
  width: 20px;
}

[data-sec=chartbeat-list-2] {
  --cb-post-title-size: 1.125rem;
}
[data-sec=chartbeat-list-2] .cb-post-thumb {
  width: 130px;
  aspect-ratio: 4/3;
  background-color: var(--bs-tertiary-bg, #f8f9fa);
}

[data-sec=chartbeat-list-6] .cb-post-thumb {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border: solid 0.3px var(--widget-muted-border);
}

[data-sec=chartbeat-list-7] .columnist-item {
  font-family: var(--font-header);
  font-size: var(--cb-post-title-size);
  font-weight: var(--cb-post-title-weight);
  line-height: 1.2;
}
[data-sec=chartbeat-list-7] .columnist-author {
  font-family: var(--font-header);
  font-size: var(--cb-post-author-size);
  font-weight: var(--cb-post-author-weight);
  line-height: 1.2;
}

[data-sec=chartbeat-list-9] .thm-border {
  border-bottom: 1px solid var(--bs-border-color);
}
[data-sec=chartbeat-list-9] .cb9-eyebrow {
  letter-spacing: 0.18em;
  font-family: var(--font-header);
  font-size: 0.8rem;
}
[data-sec=chartbeat-list-9] .cb9-cell {
  display: grid;
  grid-template-columns: 2.5rem 130px 1fr;
  column-gap: 1rem;
  align-items: start;
}
[data-sec=chartbeat-list-9] .cb9-num {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  justify-self: center;
}
[data-sec=chartbeat-list-9] .cb9-thumb {
  display: block;
  width: 130px;
  height: 130px;
  overflow: hidden;
}
[data-sec=chartbeat-list-9] .cb9-thumb img:not(.thm-vip-badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--bs-border-radius, 0.375rem);
}
[data-sec=chartbeat-list-9] .cb9-thumb .thm-vip-badge {
  z-index: 1;
}
[data-sec=chartbeat-list-9] .cb9-content {
  min-width: 0;
}
[data-sec=chartbeat-list-9] .cb9-section {
  font-family: var(--font-header);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
[data-sec=chartbeat-list-9] .row > .col-12:nth-last-child(-n+2):nth-child(odd),
[data-sec=chartbeat-list-9] .row > .col-12:last-child {
  border-bottom: 0;
}
@media (max-width: 991.98px) {
  [data-sec=chartbeat-list-9] .row > .col-12:last-child {
    border-bottom: 0;
  }
}
@media (min-width: 992px) {
  [data-sec=chartbeat-list-9] .border-lg-end {
    border-right: 1px solid var(--bs-border-color);
  }
  [data-sec=chartbeat-list-9] .row > .col-12:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

[data-sec=chartbeat-list-10] {
  --cb10-rule: rgba(0, 0, 0, 0.08);
}
[data-sec=chartbeat-list-10] .cb10-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
[data-sec=chartbeat-list-10] .cb10-head::before, [data-sec=chartbeat-list-10] .cb10-head::after {
  content: "";
  flex: 1 1 0;
  height: 2px;
  background: var(--bs-primary);
}
[data-sec=chartbeat-list-10] .cb10-headlink {
  flex: 0 0 auto;
}
[data-sec=chartbeat-list-10] .cb10-eyebrow {
  letter-spacing: 0.22em;
  font-family: var(--font-header);
  font-size: 0.85rem;
  color: var(--bs-primary);
}
[data-sec=chartbeat-list-10] .cb10-cell {
  display: grid;
  grid-template-columns: 2.75rem 80px 1fr;
  column-gap: 1.25rem;
  align-items: center;
}
[data-sec=chartbeat-list-10] .cb10-num {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  justify-self: center;
}
[data-sec=chartbeat-list-10] .cb10-thumb {
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
[data-sec=chartbeat-list-10] .cb10-thumb img:not(.thm-vip-badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--bs-border-radius, 0.375rem);
}
[data-sec=chartbeat-list-10] .cb10-thumb .thm-vip-badge {
  z-index: 1;
}
[data-sec=chartbeat-list-10] .cb10-content {
  min-width: 0;
}
[data-sec=chartbeat-list-10] .cb10-section {
  font-family: var(--font-header);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 0.25rem;
}
[data-sec=chartbeat-list-10] .cb10-title {
  font-family: var(--font-header);
  font-size: var(--cb-post-title-size);
  font-weight: var(--cb-post-title-weight);
  line-height: 1.2;
}
[data-sec=chartbeat-list-10] .cb10-byline {
  font-family: var(--font-header);
  font-size: var(--cb-post-author-size);
  font-weight: var(--cb-post-author-weight);
  line-height: 1.2;
  color: var(--bs-body-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
[data-sec=chartbeat-list-10] .cb10-dot {
  opacity: 0.6;
}
[data-sec=chartbeat-list-10] .row > .col-12:last-child {
  border-bottom: 0 !important;
}
@media (min-width: 992px) {
  [data-sec=chartbeat-list-10] .row > .col-12 {
    order: var(--cb10-order, 0);
  }
  [data-sec=chartbeat-list-10] .border-lg-end {
    border-right: 1px solid var(--cb10-rule);
  }
  [data-sec=chartbeat-list-10] .row > .cb10-lg-col-last {
    border-bottom: 0 !important;
  }
  [data-sec=chartbeat-list-10] .row > .col-12:last-child:not(.cb10-lg-col-last) {
    border-bottom: 1px solid var(--bs-border-color) !important;
  }
}

[data-bs-theme=dark] [data-sec=chartbeat-list-10] {
  --cb10-rule: rgba(255, 255, 255, 0.1);
}

[data-sec=editors-choice] {
  --ec-num-size: 2.5rem;
  --ec-hed-size: 1rem;
  --ec-gap: 0.85rem;
  display: block;
  width: 100%;
  padding: 1rem 1.15rem 1.15rem;
}
[data-sec=editors-choice] .ec-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  margin-bottom: 0.85rem;
}
[data-sec=editors-choice] .ec-head::before, [data-sec=editors-choice] .ec-head::after {
  content: "";
  flex: 1 1 0;
  height: 2px;
  background: var(--bs-primary);
}
[data-sec=editors-choice] .ec-label {
  display: inline-block;
  flex: 0 0 auto;
  font-family: var(--font-header);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-primary);
  line-height: 1.3;
}
[data-sec=editors-choice] .ec-list {
  list-style: none;
  counter-reset: ec;
  margin: 0;
  padding: 0;
}
[data-sec=editors-choice] .ec-item {
  counter-increment: ec;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--ec-gap) 0;
}
[data-sec=editors-choice] .ec-item:first-child {
  padding-top: 0;
}
[data-sec=editors-choice] .ec-item:last-child {
  padding-bottom: 0;
}
[data-sec=editors-choice] .ec-item::before {
  content: counter(ec);
  flex: 0 0 2rem;
  font-family: var(--font-title);
  font-size: var(--ec-num-size);
  font-weight: 700;
  line-height: 1;
  color: var(--bs-primary);
  text-align: center;
}
[data-sec=editors-choice] .ec-hed {
  flex: 1;
  min-width: 0;
  color: inherit;
  font-family: var(--font-title);
  font-size: var(--ec-hed-size);
  font-weight: 600;
  line-height: 1.3;
  padding-top: 0.2em;
}

.ec-widget--classic [data-sec=editors-choice] .ec-head,
[data-sec=editors-choice].ec-widget--classic .ec-head {
  display: block;
}
.ec-widget--classic [data-sec=editors-choice] .ec-head::before, .ec-widget--classic [data-sec=editors-choice] .ec-head::after,
[data-sec=editors-choice].ec-widget--classic .ec-head::before,
[data-sec=editors-choice].ec-widget--classic .ec-head::after {
  content: none;
}

.ec-widget--divided [data-sec=editors-choice],
[data-sec=editors-choice].ec-widget--divided {
  --ec-gap: 0.7rem;
}
.ec-widget--divided [data-sec=editors-choice] .ec-item,
[data-sec=editors-choice].ec-widget--divided .ec-item {
  border-bottom: 1px solid var(--bs-border-color);
}
.ec-widget--divided [data-sec=editors-choice] .ec-item:last-child,
[data-sec=editors-choice].ec-widget--divided .ec-item:last-child {
  border-bottom: 0;
}

.authors-list {
  border-radius: 0;
}
@media (min-width: 768px) {
  .authors-list {
    border-radius: var(--bs-border-radius);
  }
}
.authors-list .authors-track {
  padding-bottom: 0.5rem;
}
.authors-list .author-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100px;
}
.authors-list .author-card--disabled {
  cursor: default;
}
.authors-list .author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(var(--bs-white-rgb), 0.15);
  background-color: rgba(var(--bs-white-rgb), 0.05);
}
.authors-list .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.authors-list .author-name {
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .authors-list .author-card {
    width: 200px;
  }
  .authors-list .author-avatar {
    width: 200px;
    height: 200px;
  }
  .authors-list .author-name {
    font-size: 0.95rem;
  }
}
@media (min-width: 992px) {
  .authors-list .authors-track {
    overflow-x: visible;
    scroll-snap-type: none;
    justify-content: space-between;
  }
  .authors-list .author-card {
    width: 220px;
  }
  .authors-list .author-avatar {
    width: 220px;
    height: 220px;
  }
}

[data-sec=podcasts-list] {
  --pl-bg: linear-gradient(
      160deg,
      rgba(248, 244, 237, 0.92) 0%,
      rgba(255, 255, 255, 0.98) 38%,
      rgba(245, 235, 236, 0.94) 100%
  );
  --pl-text: #1a1a1a;
  --pl-art-bg: rgba(0, 0, 0, 0.05);
  --pl-art-border: rgba(0, 0, 0, 0.1);
}
[data-sec=podcasts-list] .hscroll__btn {
  --hscroll-arrow-fade: rgba(233, 222, 210, 0.95);
  --hscroll-arrow-fade-hover: rgba(214, 199, 184, 0.98);
  --hscroll-arrow-icon: #1a1a1a;
}
[data-sec=podcasts-list] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--pl-bg);
  color: var(--pl-text);
}
[data-sec=podcasts-list]::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.12) 0%, rgba(var(--bs-primary-rgb), 0) 70%);
  pointer-events: none;
  z-index: -1;
}
[data-sec=podcasts-list]::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 66%);
  pointer-events: none;
  z-index: -1;
}
[data-sec=podcasts-list] .podcasts-scroll__card,
[data-sec=podcasts-list] .podcasts-list__view-all {
  color: var(--pl-text);
}
[data-sec=podcasts-list] .podcasts-scroll {
  position: relative;
}
[data-sec=podcasts-list] .podcasts-scroll__card {
  width: 70vw;
  max-width: 250px;
}
[data-sec=podcasts-list] .podcasts-scroll__art {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--pl-art-border);
  background-color: var(--pl-art-bg);
}
@media (max-width: 767.98px) {
  [data-sec=podcasts-list] .podcasts-scroll {
    scroll-padding-inline: 50%;
    padding-inline: calc(50% - 35vw);
  }
}

[data-bs-theme=dark] [data-sec=podcasts-list] {
  --pl-bg: linear-gradient(
      160deg,
      rgba(26, 26, 26, 0.96) 0%,
      rgba(32, 32, 32, 0.98) 38%,
      rgba(44, 29, 30, 0.96) 100%
  );
  --pl-text: #ffffff;
  --pl-art-bg: rgba(255, 255, 255, 0.1);
  --pl-art-border: rgba(255, 255, 255, 0.1);
}
[data-bs-theme=dark] [data-sec=podcasts-list] .hscroll__btn {
  --hscroll-arrow-fade: rgba(28, 22, 23, 0.9);
  --hscroll-arrow-fade-hover: rgba(44, 29, 30, 0.98);
  --hscroll-arrow-icon: #ffffff;
}

.cartoon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cartoon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cartoon-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  opacity: 0;
  transform: translateY(12px);
  animation: cartoonCardReveal 0.4s ease forwards;
}
.cartoon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.cartoon-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bs-tertiary-bg);
}
.cartoon-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.cartoon-card:hover .cartoon-card__image-wrap::after {
  opacity: 1;
}
.cartoon-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cartoon-card:hover .cartoon-card__img {
  transform: scale(1.04);
}
.cartoon-card__view-badge {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 9999px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.cartoon-card:hover .cartoon-card__view-badge {
  opacity: 1;
  transform: translateY(0);
}
.cartoon-card__author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--bs-body-color);
  text-decoration: none;
  display: block;
  transition: color 0.15s ease;
}
.cartoon-card__author:hover {
  color: var(--bs-primary);
}
.cartoon-card__date {
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
  margin-top: 0.125rem;
}

@keyframes cartoonCardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.thm-cartoon-widget {
  background-color: var(--bs-body-bg);
}
.thm-cartoon-widget__image-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.thm-cartoon-widget__image-link img {
  display: block;
  width: 100%;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.thm-cartoon-widget__image-link:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}
.thm-cartoon-widget__image-link:hover .thm-cartoon-widget__view-overlay {
  background-color: rgba(var(--bs-dark-rgb), 0.92);
  transform: translateY(-2px);
  opacity: 1;
}
.thm-cartoon-widget__view-overlay {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  padding: 0.5rem 0.75rem;
  color: var(--bs-white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  border-radius: 9999px;
  background-color: rgba(var(--bs-dark-rgb), 0.82);
  opacity: 0.95;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
}
.thm-cartoon-widget .pc {
  padding: 0.625rem 0.75rem;
  background-color: var(--bs-tertiary-bg);
}
.thm-cartoon-widget .pc a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--bs-body-color);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.thm-cartoon-widget .pc a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--bs-primary-rgb), 1) 0%, rgba(var(--bs-primary-rgb), 0.35) 100%);
  transform-origin: left;
  transform: scaleX(0.68);
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.thm-cartoon-widget .pc a:hover {
  color: var(--bs-primary);
}
.thm-cartoon-widget .pc a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.thm-cartoon-widget__button {
  padding: 0.75rem;
  text-align: center;
}
.thm-cartoon-widget__button a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--bs-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.thm-cartoon-widget__button a:hover {
  background-color: var(--bs-primary);
  opacity: 0.9;
}

[data-bs-theme=dark] .cartoon-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
[data-bs-theme=dark] .thm-cartoon-widget {
  background-color: #262626;
  border-color: #404040 !important;
}
[data-bs-theme=dark] .thm-cartoon-widget .pc {
  background-color: #1a1a1a;
}
[data-bs-theme=dark] .thm-cartoon-widget__view-overlay {
  color: var(--bs-white);
  background-color: rgba(var(--bs-black-rgb), 0.86);
}
[data-bs-theme=dark] .thm-cartoon-widget__image-link:hover .thm-cartoon-widget__view-overlay {
  background-color: rgba(var(--bs-black-rgb), 0.94);
}

@media (max-width: 767.98px) {
  .cartoon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .cartoon-card__author {
    font-size: 0.8125rem;
  }
  .cartoon-card__date {
    font-size: 0.6875rem;
  }
}
@media (max-width: 575.98px) {
  .cartoon-grid {
    grid-template-columns: 1fr;
  }
}
.cartoon-viewer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1060;
}
.cartoon-viewer.is-open {
  display: flex;
  animation: cartoonViewerFadeIn 0.2s ease;
}

@keyframes cartoonViewerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cartoon-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cartoon-viewer__panel {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cartoon-viewer__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  color: #fff;
  gap: 0.75rem;
}

.cartoon-viewer__author-info {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}

.cartoon-viewer__author-name {
  font-family: var(--font-title, serif);
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cartoon-viewer__date {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.cartoon-viewer__counter {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cartoon-viewer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 1rem;
  padding: 0;
}
.cartoon-viewer__close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.cartoon-viewer__scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.cartoon-viewer__scroll::-webkit-scrollbar {
  width: 6px;
}
.cartoon-viewer__scroll::-webkit-scrollbar-track {
  background: transparent;
}
.cartoon-viewer__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.cartoon-viewer__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65vh;
}

.cartoon-viewer__image-container {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartoon-viewer__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.375rem;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.cartoon-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.15s ease;
  z-index: 10;
  padding: 0;
}
.cartoon-viewer__nav:hover {
  background: rgba(var(--bs-primary-rgb), 0.85);
  border-color: var(--bs-primary);
  transform: translateY(-50%) scale(1.08);
}
.cartoon-viewer__nav--prev {
  left: 0.25rem;
}
.cartoon-viewer__nav--next {
  right: 0.25rem;
}
.cartoon-viewer__nav:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.cartoon-viewer__thumbstrip {
  overflow-x: auto;
  scrollbar-width: none;
}
.cartoon-viewer__thumbstrip::-webkit-scrollbar {
  display: none;
}

.cartoon-viewer__thumbstrip-track {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
}

.cartoon-viewer__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.15s ease;
}
.cartoon-viewer__thumb:hover {
  opacity: 0.75;
}
.cartoon-viewer__thumb.is-active {
  opacity: 1;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 1px var(--bs-primary);
}
.cartoon-viewer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cartoon-viewer__content {
  max-width: 760px;
  margin: 0.75rem auto 0;
  width: 100%;
  background: #141414;
  border-radius: 0.5rem 0.5rem 0 0;
}

.cartoon-viewer__ad {
  text-align: center;
}

.cartoon-viewer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cartoon-viewer__social .btn-outline-dark,
.cartoon-viewer__social .btn {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.cartoon-viewer__social .btn-outline-dark:hover,
.cartoon-viewer__social .btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.cartoon-viewer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0;
}
.cartoon-viewer__social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cartoon-viewer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0.5rem 0;
}

.cartoon-viewer__comments {
  color: rgba(255, 255, 255, 0.85);
}

.cartoon-viewer__login-cta {
  text-align: center;
  color: #fff;
}
.cartoon-viewer__login-cta h3 {
  font-family: var(--font-title, serif);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.cartoon-viewer__login-cta p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
}

.cartoon-viewer__login-btn {
  display: inline-block;
  background: var(--bs-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.cartoon-viewer__login-btn:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-1px);
}

.cartoon-viewer__login-secondary {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}
.cartoon-viewer__login-secondary a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 767.98px) {
  .cartoon-viewer__nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .cartoon-viewer__nav--prev {
    left: 0.125rem;
  }
  .cartoon-viewer__nav--next {
    right: 0.125rem;
  }
  .cartoon-viewer__stage {
    height: 50vh;
  }
  .cartoon-viewer__thumbstrip {
    display: none;
  }
  .cartoon-viewer__author-name {
    font-size: 1rem;
  }
}
[data-bs-theme=dark] .cartoon-viewer__backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.cartoon-day-nav {
  position: sticky;
  top: var(--body-padding-top, 65px);
  z-index: 100;
  background: var(--bs-body-bg);
  border-bottom: 1px solid var(--bs-border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}
.cartoon-day-nav.is-stuck {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cartoon-day-nav__track {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.cartoon-day-nav__track::-webkit-scrollbar {
  display: none;
}

.cartoon-day-nav__pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 9999px;
  border: 1.5px solid transparent;
  color: var(--bs-secondary-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}
.cartoon-day-nav__pill:hover {
  color: var(--bs-body-color);
  background: var(--bs-tertiary-bg);
  text-decoration: none;
}
.cartoon-day-nav__pill.is-active {
  color: #fff;
  background: var(--bs-primary);
  border-color: var(--bs-primary);
}

.cartoon-day-nav__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 9999px;
  background: rgba(var(--bs-primary-rgb), 0.12);
  color: var(--bs-primary);
}
.cartoon-day-nav__pill.is-active .cartoon-day-nav__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cartoon-day-section {
  scroll-margin-top: calc(var(--body-padding-top, 65px) + 60px);
}

.cartoon-day-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cartoon-day-section__bar {
  width: 3px;
  height: 1.75rem;
  background: var(--bs-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.cartoon-day-section__label {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--bs-body-color);
}

.cartoon-day-section__date {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--bs-secondary-color);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.25rem;
}

.cartoon-day-section__divider {
  flex: 1;
  height: 1px;
  background: var(--bs-border-color);
}

.cartoon-day-section__count-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bs-secondary-color);
  border: 1px solid var(--bs-border-color);
  border-radius: 9999px;
  white-space: nowrap;
}

[data-bs-theme=dark] .cartoon-day-nav.is-stuck {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
[data-bs-theme=dark] .cartoon-day-section__bar {
  background: #fff;
}

.cu-wrap,
.faq-page {
  --cu-accent: var(--bs-primary, #b21f24);
  --cu-bg-form: #fff;
  --cu-bg-faq: #f8f8f9;
  --cu-border: #e4e4e6;
  --cu-radius: 8px;
  --cu-shadow: 0 2px 24px rgb(0 0 0 / 7%);
}

.cu-header,
.faq-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cu-border);
}
.cu-header h1,
.faq-page-header h1 {
  font-family: var(--font-bolder, SourceSansProBold, Helvetica, sans-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.375rem;
}

.cu-header-sub,
.faq-page-sub {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.cu-form-panel {
  background: var(--cu-bg-form);
  border-radius: var(--cu-radius);
  border: 1px solid var(--cu-border);
  box-shadow: var(--cu-shadow);
  animation: cu-fade-up 0.35s ease both;
}
.cu-form-panel form {
  margin: 0;
}
.cu-form-panel .form-label.fw-bold {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #374151;
  margin-bottom: 0.35rem;
}
.cu-form-panel .form-control {
  border-color: var(--cu-border);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cu-form-panel .form-control:focus {
  border-color: var(--cu-accent);
  box-shadow: 0 0 0 3px rgba(178, 31, 36, 0.12);
}
.cu-form-panel p:has(> .cu-faq-link) {
  display: none;
}
.cu-form-panel .btn-border-pulse {
  background: var(--cu-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  width: 100%;
  transition: opacity 0.2s !important;
  animation: none !important;
  box-shadow: none !important;
}
.cu-form-panel .btn-border-pulse:hover {
  opacity: 0.88 !important;
}
.cu-form-panel .btn-border-pulse:disabled {
  opacity: 0.5 !important;
}

@media (min-width: 992px) {
  .cu-form-panel {
    position: sticky;
    top: 80px;
  }
}
.cu-form-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cu-accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cu-border);
}

.cu-faq-link {
  color: var(--cu-accent);
  font-size: 1.2em;
  text-decoration: underline;
}

.cu-faq-panel,
.faq-page-panel {
  background: var(--cu-bg-faq);
  border-radius: var(--cu-radius);
  border: 1px solid var(--cu-border);
  animation: cu-fade-up 0.35s ease 0.1s both;
}

.cu-faq-title {
  font-family: var(--font-bolder, SourceSansProBold, Helvetica, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--cu-border);
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}
.faq-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cu-accent);
  text-decoration: none;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--cu-accent);
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.faq-nav a:hover {
  background: var(--cu-accent);
  color: #fff;
}

.faq-page-panel .faq-section,
.cu-faq-panel .faq-section {
  margin-bottom: 0;
}
.faq-page-panel .faq-section a,
.cu-faq-panel .faq-section a {
  color: var(--cu-accent);
  text-decoration: underline;
}
.faq-page-panel .faq-section a:hover,
.cu-faq-panel .faq-section a:hover {
  color: var(--text-color);
  text-decoration: none;
}
.faq-page-panel .faq-section-header,
.cu-faq-panel .faq-section-header {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cu-accent) !important;
  margin-top: 1.75rem !important;
  margin-bottom: 0.5rem !important;
}
.faq-page-panel .faq-section:first-of-type .faq-section-header,
.cu-faq-panel .faq-section:first-of-type .faq-section-header {
  margin-top: 0.25rem !important;
}
.faq-page-panel .accordion-item,
.cu-faq-panel .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cu-border);
}
.faq-page-panel .accordion-item:last-child,
.cu-faq-panel .accordion-item:last-child {
  border-bottom: none;
}
.faq-page-panel .accordion-button,
.cu-faq-panel .accordion-button {
  font-family: var(--font-bolder);
  background: transparent;
  font-weight: 600;
  color: #1a1a2e;
  padding: 0.65rem 0.25rem;
  padding-right: 0;
  box-shadow: none;
}
.faq-page-panel .accordion-button::after,
.cu-faq-panel .accordion-button::after {
  background-size: 14px;
}
.faq-page-panel .accordion-button:not(.collapsed),
.cu-faq-panel .accordion-button:not(.collapsed) {
  color: var(--cu-accent);
  background: transparent;
  box-shadow: none;
}
.faq-page-panel .accordion-button:not(.collapsed)::after,
.cu-faq-panel .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}
.faq-page-panel .accordion-body,
.cu-faq-panel .accordion-body {
  line-height: 1.65;
  color: #4b5563;
  padding: 0 0.25rem 1rem;
}
.faq-page-panel .accordion-body p:last-of-type,
.faq-page-panel .accordion-body p:last-child,
.cu-faq-panel .accordion-body p:last-of-type,
.cu-faq-panel .accordion-body p:last-child {
  margin-bottom: 0;
}
.faq-page-panel .accordion-body a,
.cu-faq-panel .accordion-body a {
  color: var(--cu-accent);
}

.cu-inquiry-options {
  --cu-accent: var(--bs-primary, #b21f24);
  --cu-pill-bg: #f8f8f9;
  --cu-pill-border: #e4e4e6;
  --cu-pill-text: #374151;
}
.cu-inquiry-options .cu-inquiry-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cu-pill-text);
  background: var(--cu-pill-bg);
  border: 1px solid var(--cu-pill-border);
  border-radius: 20px;
  text-align: left;
  padding: 0.4rem 0.95rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cu-inquiry-options .cu-inquiry-pill:hover {
  border-color: var(--cu-accent);
  color: var(--cu-accent);
}
.cu-inquiry-options .btn-check:checked + .cu-inquiry-pill {
  background: var(--cu-accent);
  border-color: var(--cu-accent);
  color: #fff;
}
.cu-inquiry-options .btn-check:focus-visible + .cu-inquiry-pill {
  box-shadow: 0 0 0 3px rgba(178, 31, 36, 0.18);
}

@keyframes cu-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-bs-theme=dark] .cu-wrap,
[data-bs-theme=dark] .faq-page {
  --cu-bg-form: #1a1a1a;
  --cu-bg-faq: #111;
  --cu-border: #333;
  --cu-shadow: 0 2px 24px rgb(0 0 0 / 25%);
}
[data-bs-theme=dark] .cu-inquiry-options {
  --cu-pill-bg: #262626;
  --cu-pill-border: #333;
  --cu-pill-text: #d1d5db;
}
[data-bs-theme=dark] .cu-inquiry-options .cu-inquiry-pill:hover {
  color: #fff;
}
[data-bs-theme=dark] .cu-header h1,
[data-bs-theme=dark] .faq-page-header h1 {
  color: var(--bs-body-color, #f5f5f5);
}
[data-bs-theme=dark] .cu-header-sub,
[data-bs-theme=dark] .faq-page-sub {
  color: var(--bs-secondary-color, rgba(245, 245, 245, 0.75));
}
[data-bs-theme=dark] .cu-form-title {
  color: var(--cu-accent);
}
[data-bs-theme=dark] .cu-form-panel .form-label.fw-bold {
  color: #d1d5db;
}
[data-bs-theme=dark] .cu-form-panel .form-control {
  background-color: #262626;
  border-color: var(--cu-border);
  color: #f5f5f5;
}
[data-bs-theme=dark] .cu-form-panel .form-control:focus {
  border-color: var(--cu-accent);
  box-shadow: 0 0 0 3px rgba(178, 31, 36, 0.2);
}
[data-bs-theme=dark] .cu-faq-panel .accordion-button,
[data-bs-theme=dark] .faq-page-panel .accordion-button {
  color: #e5e7eb;
}
[data-bs-theme=dark] .cu-faq-panel .accordion-button:not(.collapsed),
[data-bs-theme=dark] .faq-page-panel .accordion-button:not(.collapsed) {
  color: var(--cu-accent);
}
[data-bs-theme=dark] .cu-faq-panel .accordion-body,
[data-bs-theme=dark] .faq-page-panel .accordion-body {
  color: #9ca3af;
}
[data-bs-theme=dark] .cu-faq-panel .accordion-body a,
[data-bs-theme=dark] .faq-page-panel .accordion-body a {
  color: var(--cu-accent);
}
[data-bs-theme=dark] .faq-nav a {
  color: var(--cu-accent);
  border-color: var(--cu-accent);
}
[data-bs-theme=dark] .faq-nav a:hover {
  background: var(--cu-accent);
  color: #fff;
}

/* Messages component styles
   Font stacks aligned with site-wide --font-bolder / --font-body vars.
   Accent color uses --bs-primary for brand consistency.
*/
:root {
  --msg-page-bg: linear-gradient(180deg, #f4efe7 0%, #ebe3d6 100%);
  --msg-panel-bg: rgba(255, 255, 255, 0.82);
  --msg-panel-border: rgba(42, 53, 68, 0.12);
  --msg-panel-shadow: 0 24px 60px rgba(30, 42, 56, 0.08);
  --msg-bubble-bg: #ffffff;
  --msg-bubble-border: rgba(45, 58, 75, 0.12);
  --msg-body-color: #1f2933;
  --msg-thread-border: rgba(42, 53, 68, 0.1);
  --msg-thread-hover-bg: rgba(231, 225, 214, 0.8);
  --msg-thread-active-bg: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.12) 0%, rgba(255, 255, 255, 0.94) 100%);
  --msg-thread-preview: #5f6a74;
  --msg-blockquote-bg: #f8f2e9;
  --msg-icon-fill: #12263a;
  --msg-compose-fill: #ffffff;
  --msg-compose-active-fill: #1f2933;
  --msg-accent: var(--bs-primary, #b21f24);
  --msg-accent-soft: rgba(var(--bs-primary-rgb), 0.1);
  --msg-heading: #12263a;
  --msg-muted: #5f6a74;
  --msg-rule: rgba(var(--bs-primary-rgb), 0.18);
  --msg-display: var(--font-bolder, SourceSansProBold, Helvetica, sans-serif);
  --msg-body: var(--font-body, Helvetica, sans-serif);
}

[data-bs-theme=dark] {
  --msg-page-bg: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  --msg-panel-bg: rgba(38, 38, 38, 0.92);
  --msg-panel-border: rgba(64, 64, 64, 0.6);
  --msg-panel-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --msg-bubble-bg: rgba(38, 38, 38, 0.94);
  --msg-bubble-border: rgba(64, 64, 64, 0.5);
  --msg-body-color: #f5f5f5;
  --msg-thread-border: rgba(64, 64, 64, 0.5);
  --msg-thread-hover-bg: rgba(64, 64, 64, 0.35);
  --msg-thread-active-bg: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.18) 0%, rgba(38, 38, 38, 0.95) 100%);
  --msg-thread-preview: rgba(245, 245, 245, 0.6);
  --msg-blockquote-bg: rgba(255, 255, 255, 0.04);
  --msg-icon-fill: #f5f5f5;
  --msg-compose-fill: #f5f5f5;
  --msg-compose-active-fill: #ffffff;
  --msg-accent: var(--brand-primary-light, #ea6b6e);
  --msg-accent-soft: rgba(var(--bs-primary-rgb), 0.18);
  --msg-heading: #ffffff;
  --msg-muted: rgba(245, 245, 245, 0.6);
  --msg-rule: rgba(var(--bs-primary-rgb), 0.3);
}

.thm-messages-shell {
  position: relative;
  padding: 1rem;
  font-family: var(--msg-body);
}
.thm-messages-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--bs-primary-rgb), 0.05) 0, rgba(var(--bs-primary-rgb), 0.05) 1px, transparent 1px, transparent 24px), radial-gradient(circle at top left, rgba(173, 195, 215, 0.28), transparent 35%), radial-gradient(circle at top right, rgba(var(--bs-primary-rgb), 0.09), transparent 28%), var(--msg-page-bg);
  background-size: auto, auto, auto, auto;
  border-radius: 30px;
  z-index: -1;
}
.thm-messages-shell .img-thumbnail {
  width: 52px;
  height: 52px;
  object-fit: cover;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #fff;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.12);
}
.thm-messages-shell .scrollarea {
  overflow-y: auto;
  flex-grow: 1;
}
.thm-messages-shell .thm-icon-inbox > svg,
.thm-messages-shell .thm-icon-leave > span > svg,
.thm-messages-shell .thm-icon-compose > span > svg,
.thm-messages-shell .thm-empty-state__icon > svg {
  display: block;
}

.thm-msg-bar {
  margin-bottom: 1.5rem;
}

.thm-msg-hero__eyebrow,
.thm-msg-hero__stat-label,
.thm-panel-heading__eyebrow,
.thm-message-view__eyebrow,
.thm-msg__kicker,
.thm-reply-box__label,
.thm-msg-modal__eyebrow {
  margin: 0;
  color: var(--msg-accent);
  font-family: var(--msg-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thm-msg-hero {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid var(--msg-panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.06), transparent 55%), linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64));
  box-shadow: var(--msg-panel-shadow);
  backdrop-filter: blur(14px);
}
.thm-msg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--msg-accent);
  border-radius: 28px;
  pointer-events: none;
}
.thm-msg-hero__copy {
  max-width: 48rem;
}
.thm-msg-hero__title {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.35rem 0 0;
  color: var(--msg-heading);
  font-family: var(--msg-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}
.thm-msg-hero__summary {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: var(--msg-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  text-wrap: pretty;
}
.thm-msg-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.thm-msg-hero__stat {
  min-width: 110px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--msg-panel-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
}
.thm-msg-hero__stat-value {
  display: block;
  color: var(--msg-heading);
  font-family: var(--msg-display);
  font-size: 2rem;
  line-height: 1;
}
.thm-msg-hero__compose {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.thm-msg-hero__compose span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.thm-msg-hero .thm-icon-inbox {
  color: var(--msg-icon-fill);
  text-decoration: none;
}
.thm-msg-hero .thm-icon-inbox > svg {
  width: 2.6rem;
  height: 2.6rem;
}
.thm-msg-hero .thm-icon-compose {
  fill: var(--msg-compose-fill);
}
.thm-msg-hero .thm-icon-compose:active, .thm-msg-hero .thm-icon-compose:hover, .thm-msg-hero .thm-icon-compose:focus {
  fill: var(--msg-compose-active-fill);
}

.thm-messages-panel {
  position: relative;
  min-height: 400px;
  padding: 1.1rem;
  border: 1px solid var(--msg-panel-border);
  border-radius: 28px;
  background: var(--msg-panel-bg);
  box-shadow: var(--msg-panel-shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.thm-messages-panel--threads {
  height: calc(100vh - 205px);
  display: flex;
  flex-direction: column;
}
.thm-messages-panel--empty {
  height: calc(100vh - 205px);
}

.thm-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.35rem 1rem;
  border-bottom: 1px solid var(--msg-thread-border);
}
.thm-panel-heading__title {
  margin: 0.2rem 0 0;
  color: var(--msg-heading);
  font-family: var(--msg-display);
  font-size: 1.8rem;
  line-height: 1;
}
.thm-panel-heading__summary {
  margin: 0.45rem 0 0;
  color: var(--msg-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
.thm-panel-heading__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--msg-accent-soft);
  color: var(--msg-accent);
  font-weight: 700;
}

.thm-thread-list {
  padding-top: 1rem;
  overflow-y: auto;
}

.thm-thread {
  margin: 0 0 0.9rem;
  color: var(--msg-body-color);
  border: 1px solid var(--msg-thread-border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.52));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}
.thm-thread:hover {
  cursor: pointer;
  background: var(--msg-thread-hover-bg);
  border-color: rgba(42, 53, 68, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30, 42, 56, 0.08);
}
.thm-thread.active {
  border-color: var(--msg-rule);
  background: var(--msg-thread-active-bg);
  box-shadow: 0 16px 34px rgba(78, 49, 38, 0.12);
}
.thm-thread.unread {
  border-left: 4px solid var(--msg-accent);
}
.thm-thread__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem;
}
.thm-thread__avatar-wrap {
  padding-top: 0.1rem;
}
.thm-thread__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.thm-thread__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.thm-thread__author {
  color: var(--msg-heading);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}
.thm-thread__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--msg-accent-soft);
  color: var(--msg-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.thm-thread__subject {
  display: block;
  color: var(--msg-heading);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
}
.thm-thread__preview {
  display: block;
  color: var(--msg-thread-preview);
  font-size: 0.97rem;
  line-height: 1.45;
}
.thm-thread__aside {
  display: flex;
  justify-content: flex-end;
  min-width: 4.25rem;
}
.thm-thread__ts {
  color: var(--msg-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.thm-message-view {
  height: calc(100vh - 205px);
  display: flex;
  flex-direction: column;
}
.thm-message-view__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.35rem 1rem;
  border-bottom: 1px solid var(--msg-thread-border);
}
.thm-message-view__back {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--msg-thread-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--msg-body-color);
  font-weight: 700;
}
.thm-message-view__back-icon {
  font-size: 1rem;
  line-height: 1;
}
.thm-message-view__header-copy {
  min-width: 0;
}
.thm-message-view__header h2 {
  margin: 0.25rem 0 0;
  color: var(--msg-heading);
  font-family: var(--msg-display);
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.thm-message-view__subhead {
  margin: 0.65rem 0 0;
  color: var(--msg-muted);
  font-size: 0.98rem;
}
.thm-message-view__leave {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--msg-thread-border);
  border-radius: 999px;
  color: var(--msg-body-color);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.thm-message-view__leave:hover {
  background: var(--msg-thread-hover-bg);
  border-color: rgba(42, 53, 68, 0.18);
}
.thm-message-view__leave svg {
  width: 18px;
  height: 18px;
  fill: var(--msg-icon-fill);
}
.thm-message-view__stream {
  padding: 1rem 0.15rem 0.25rem;
}
.thm-message-view__footer {
  flex-shrink: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--msg-thread-border);
}

.thm-msg-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.2rem;
}
.thm-msg-stack--welcome {
  justify-content: center;
  min-height: 100%;
}

.thm-msg {
  display: block;
  position: relative;
  padding: 1.15rem;
  border: 1px solid var(--msg-bubble-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.03), transparent 54%), linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 40px rgba(30, 42, 56, 0.08);
}
.thm-msg--welcome {
  max-width: 52rem;
}
.thm-msg a {
  color: var(--primary-color);
}
.thm-msg h2 {
  margin: 10px 0;
}
.thm-msg__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.thm-msg__avatar-wrap {
  flex: 0 0 auto;
}
.thm-msg__author-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.thm-msg__meta-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--msg-muted);
  font-size: 0.88rem;
}
.thm-msg__author-name {
  color: var(--msg-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.thm-msg__body {
  color: var(--msg-body-color);
  font-size: clamp(1.03rem, 1.6vw, var(--lb-fs-body, 1.25rem));
  line-height: 1.72;
  text-wrap: pretty;
}
.thm-msg__body figure {
  margin: 10px auto;
}
.thm-msg__body a {
  color: var(--primary-color);
  text-decoration: underline;
  overflow-wrap: break-word;
}
.thm-msg__body a:hover {
  text-decoration: none !important;
}
.thm-msg__body > img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  margin: 10px 0;
}
.thm-msg__body iframe {
  display: block;
  width: 100%;
  vertical-align: middle;
}
.thm-msg__body .embed-responsive,
.thm-msg__body .fr-video {
  margin: 30px auto;
}
.thm-msg__body blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.2rem 1rem 3rem;
  border: 1px solid var(--msg-thread-border);
  border-radius: 18px;
  background-color: var(--msg-blockquote-bg);
  color: var(--msg-body-color);
  font-family: var(--msg-body);
  font-size: 100%;
  font-style: normal;
  position: relative;
}
.thm-msg__body blockquote::before {
  content: "“";
  position: absolute;
  top: 0.25rem;
  left: 0.75rem;
  color: var(--msg-accent);
  font-family: Georgia, serif;
  font-size: 3.25rem;
  line-height: 1;
}
.thm-msg__body blockquote::after {
  display: none;
}
.thm-msg__body p:last-of-type {
  margin-bottom: 0;
}

.thm-reply-box {
  padding: 1rem;
  border: 1px solid var(--msg-thread-border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.04), transparent 65%), rgba(255, 255, 255, 0.58);
}
.thm-reply-box textarea.form-control {
  min-height: 132px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border-color: rgba(42, 53, 68, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 2px rgba(30, 42, 56, 0.04);
  resize: vertical;
}
.thm-reply-box__topline, .thm-reply-box__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.thm-reply-box__topline {
  margin-bottom: 0.9rem;
}
.thm-reply-box__hint {
  margin: 0;
  color: var(--msg-muted);
  font-size: 0.88rem;
}

.thm-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--msg-muted);
  font-weight: 600;
}

.thm-empty-state {
  max-width: 24rem;
}
.thm-empty-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: var(--msg-accent-soft);
  color: var(--msg-accent);
}
.thm-empty-state__icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.thm-empty-state h2 {
  margin: 0;
  color: var(--msg-heading);
  font-family: var(--msg-display);
  font-size: 2rem;
}
.thm-empty-state p {
  margin: 0.75rem 0 0;
  color: var(--msg-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.thm-msg-modal {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 16, 24, 0.58);
  backdrop-filter: blur(10px);
}
.thm-msg-modal__dialog {
  width: min(100%, 760px);
  margin: 0;
}
.thm-msg-modal__dialog--compact {
  width: min(100%, 580px);
}
.thm-msg-modal .modal-content {
  border: 1px solid var(--msg-panel-border);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.05), transparent 52%), linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 244, 239, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}
.thm-msg-modal .modal-header,
.thm-msg-modal .modal-footer {
  padding: 1.35rem 1.5rem;
  border-color: var(--msg-thread-border);
}
.thm-msg-modal .modal-body {
  padding: 1.5rem;
}
.thm-msg-modal .modal-title {
  color: var(--msg-heading);
  font-family: var(--msg-display);
  line-height: 1;
  letter-spacing: -0.02em;
}
.thm-msg-modal .form-label {
  margin-bottom: 0.45rem;
  color: var(--msg-heading);
  font-weight: 700;
}
.thm-msg-modal .form-control,
.thm-msg-modal .ts-control {
  min-height: 3.45rem;
  border-radius: 18px;
  border-color: rgba(42, 53, 68, 0.16);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 2px rgba(30, 42, 56, 0.03);
}
.thm-msg-modal textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

@media (max-width: 1199.98px) {
  .thm-messages-panel,
  .thm-message-view,
  .thm-messages-panel--threads,
  .thm-messages-panel--empty {
    height: auto;
    min-height: 0;
  }
  .thm-thread-list {
    max-height: none;
    overflow: visible;
  }
}
@media (max-width: 991.98px) {
  .thm-messages-col--hidden-mobile {
    display: none;
  }
  .thm-message-view__back {
    display: inline-flex;
  }
  .thm-message-view__header {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 767.98px) {
  .thm-messages-shell {
    padding: 0.35rem 0.35rem 0.5rem;
  }
  .thm-messages-shell::before {
    border-radius: 22px;
  }
  .thm-messages-shell .img-thumbnail {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .thm-msg-hero {
    padding: 1rem 0.9rem;
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
  }
  .thm-msg-hero__actions {
    justify-content: space-between;
  }
  .thm-messages-panel {
    padding: 0.65rem;
    border-radius: 22px;
  }
  .thm-thread {
    border-radius: 18px;
  }
  .thm-thread__inner {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .thm-thread__aside {
    grid-column: 2;
    justify-content: flex-start;
    min-width: 0;
  }
  .thm-message-view__leave {
    justify-content: center;
  }
  .thm-reply-box__topline, .thm-reply-box__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .thm-msg-modal {
    padding: 0.65rem;
  }
  .thm-msg-modal .modal-header,
  .thm-msg-modal .modal-footer,
  .thm-msg-modal .modal-body {
    padding: 1rem;
  }
}
[data-bs-theme=dark] .thm-messages-shell::before {
  background: var(--msg-page-bg);
}
[data-bs-theme=dark] .thm-messages-shell .img-thumbnail {
  border-color: rgba(64, 64, 64, 0.5);
  background: #262626;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
[data-bs-theme=dark] .thm-msg-hero {
  background: #262626;
}
[data-bs-theme=dark] .thm-msg-hero__stat {
  background: rgba(0, 0, 0, 0.4);
}
[data-bs-theme=dark] .thm-thread {
  background: #262626;
}
[data-bs-theme=dark] .thm-thread:hover {
  background: var(--msg-thread-hover-bg);
  border-color: rgba(64, 64, 64, 0.7);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
[data-bs-theme=dark] .thm-thread.active {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}
[data-bs-theme=dark] .thm-msg {
  background: #262626;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
[data-bs-theme=dark] .thm-reply-box {
  background: rgba(0, 0, 0, 0.3);
}
[data-bs-theme=dark] .thm-reply-box textarea.form-control {
  border-color: rgba(64, 64, 64, 0.5);
  background: #1a1a1a;
  color: #f5f5f5;
  box-shadow: none;
}
[data-bs-theme=dark] .thm-message-view__back {
  background: rgba(38, 38, 38, 0.8);
}
[data-bs-theme=dark] .thm-msg-modal .modal-content {
  background: #262626;
}
[data-bs-theme=dark] .thm-msg-modal .form-control,
[data-bs-theme=dark] .thm-msg-modal .ts-control {
  background: #1a1a1a;
  border-color: rgba(64, 64, 64, 0.5);
  color: #f5f5f5;
}

@keyframes thm-msg-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes thm-msg-spin {
  to {
    transform: rotate(360deg);
  }
}
.thm-messages-shell--ready .thm-msg-hero {
  animation: thm-msg-fade-up 420ms ease both;
}
.thm-messages-shell--ready .thm-messages-panel--threads {
  animation: thm-msg-fade-up 480ms ease both;
}
.thm-messages-shell--ready .thm-message-view,
.thm-messages-shell--ready .thm-messages-panel--empty {
  animation: thm-msg-fade-up 540ms ease both;
}
.thm-messages-shell--ready .thm-thread {
  animation: thm-msg-fade-up 420ms ease both;
}
.thm-messages-shell--ready .thm-thread:nth-child(2) {
  animation-delay: 40ms;
}
.thm-messages-shell--ready .thm-thread:nth-child(3) {
  animation-delay: 80ms;
}
.thm-messages-shell--ready .thm-thread:nth-child(4) {
  animation-delay: 120ms;
}
.thm-messages-shell--ready .thm-thread:nth-child(5) {
  animation-delay: 160ms;
}
.thm-messages-shell--ready .thm-msg {
  animation: thm-msg-fade-up 380ms ease both;
}

.thm-msg-spin {
  animation: thm-msg-spin 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .thm-thread,
  .thm-msg,
  .thm-msg-hero,
  .thm-messages-panel--threads,
  .thm-message-view,
  .thm-messages-panel--empty,
  .thm-msg-spin {
    animation: none !important;
    transition: none !important;
  }
}
section[data-sec=search] {
  --search-excerpt-color: #444;
  --search-title-color: var(--bs-primary);
}
section[data-sec=search] .search-query .btn {
  line-height: 0;
}
section[data-sec=search] .search-query .btn:focus-visible {
  box-shadow: none;
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
  border-radius: 50rem;
}
section[data-sec=search] .search-filters__field {
  min-width: 170px;
}
section[data-sec=search] .search-result:last-child {
  border-bottom: 0 !important;
}
section[data-sec=search] .search-excerpt {
  color: var(--search-excerpt-color);
}
section[data-sec=search] .search-title {
  color: var(--search-title-color);
}
section[data-sec=search] .search-item-link {
  text-decoration: none;
}
section[data-sec=search] .search-item-link:hover .search-title, section[data-sec=search] .search-item-link:hover .search-permalink {
  text-decoration: underline;
}
section[data-sec=search] .icon-post-type__rumble {
  content: url('data:image/svg+xml;charset=UTF-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 980 735"><path fill="%23567D31" d="M381.2 517.4l245-122.5c22.5-11.3 22.5-43.5 0-54.8l-245-122.5c-20.4-10.2-44.3 4.6-44.3 27.4v245c0 22.8 23.9 37.5 44.3 27.4zM888.4 0H91.6C41.2 0 0 41.5 0 92.3v550.3c0 51 40.9 92.4 91.6 92.4h796.8c50.4 0 91.6-41.5 91.6-92.4V92.3c0-51-40.9-92.3-91.6-92.3zM183.8 642.8c0 17.1-13.1 30.9-30.9 30.9H92.3c-17.1 0-30.9-13.1-30.9-30.9v-60.6c0-17.1 13.1-30.9 30.9-30.9H153c17 0 30.9 13.1 30.9 30.9v60.6h-.1zm0-245c0 17.1-13.1 30.9-30.9 30.9H92.3c-17.1 0-30.9-13.1-30.9-30.9v-60.6c0-17.1 13.1-30.9 30.9-30.9H153c17 0 30.9 13.1 30.9 30.9v60.6h-.1zm0-245c0 17.1-13.1 30.9-30.9 30.9H92.3c-17.1 0-30.9-13.1-30.9-30.9V92.2c0-17.1 13.1-30.9 30.9-30.9H153c17 0 30.9 13.1 30.9 30.9v60.6h-.1zm551.2 521H245V61.2h490v612.6zm183.8-31c0 17.1-13.1 30.9-30.9 30.9h-60.7c-17 0-30.9-13.1-30.9-30.9v-60.6c0-17.1 13.1-30.9 30.9-30.9h60.7c17 0 30.9 13.1 30.9 30.9v60.6zm0-245c0 17.1-13.1 30.9-30.9 30.9h-60.7c-17 0-30.9-13.1-30.9-30.9v-60.6c0-17.1 13.1-30.9 30.9-30.9h60.7c17 0 30.9 13.1 30.9 30.9v60.6zm0-245c0 17.1-13.1 30.9-30.9 30.9h-60.7c-17 0-30.9-13.1-30.9-30.9V92.2c0-17.1 13.1-30.9 30.9-30.9h60.7c17 0 30.9 13.1 30.9 30.9v60.6z"/></svg>');
  height: 13px;
  width: auto;
  padding-left: 5px;
}
section[data-sec=search] .icon-post-type__podcast {
  content: url('data:image/svg+xml;charset=UTF-8, <svg height="512pt" viewBox="0 0 512 512" width="512pt" xmlns="http://www.w3.org/2000/svg"><path d="M351.336 256c0-52.566-42.77-95.336-95.336-95.336s-95.336 42.77-95.336 95.336c0 33.703 17.582 63.375 44.055 80.332-26.473 16.957-44.055 46.633-44.055 80.332V497c0 8.285 6.719 15 15 15h160.672c8.281 0 15-6.715 15-15v-80.336c0-33.7-17.582-63.375-44.055-80.332 26.473-16.957 44.055-46.629 44.055-80.332zm0 0"/><path d="M256 80.332c-96.863 0-175.664 78.805-175.664 175.668 0 48.8 20.305 94.707 54.828 127.473 2.668-9.711 6.488-19.102 11.43-27.914.386-.696.789-1.383 1.187-2.07-23.73-26.376-37.445-60.958-37.445-97.489 0-80.32 65.344-145.664 145.664-145.664S401.664 175.68 401.664 256c.004 36.531-13.715 71.117-37.445 97.488.398.688.8 1.375 1.187 2.07 4.942 8.813 8.762 18.204 11.43 27.915C411.359 350.707 431.668 304.8 431.664 256c0-96.863-78.8-175.668-175.664-175.668zm0 0"/><path d="M437.02 74.98C388.668 26.63 324.383 0 256 0S123.332 26.629 74.98 74.98C26.63 123.332 0 187.621 0 256c0 93.477 51.074 178.527 130.664 223.273v-35.171C68.867 402.828 30 332.622 30 256 30 131.383 131.383 30 256 30s226 101.383 226 226c0 76.621-38.867 146.828-100.664 188.102v35.171C460.926 434.527 512 349.477 512 256c0-68.379-26.629-132.668-74.98-181.02zm0 0"/></svg>');
  height: 16px;
  width: auto;
  margin-top: 2px;
  padding-left: 3px;
  vertical-align: text-top;
}
section[data-sec=search] .ts-control {
  background-color: var(--bs-body-bg);
  border-color: var(--bs-border-color);
  color: var(--bs-body-color);
}
section[data-sec=search] .ts-wrapper.focus .ts-control {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.ts-dropdown {
  background-color: var(--bs-body-bg);
  border-color: var(--bs-border-color);
  color: var(--bs-body-color);
}
.ts-dropdown .option,
.ts-dropdown .create,
.ts-dropdown .no-results {
  color: var(--bs-body-color);
}
.ts-dropdown .active {
  background-color: var(--bs-primary);
  color: #fff;
}

[data-bs-theme=dark] section[data-sec=search] {
  --search-excerpt-color: #ccc;
  --search-title-color: var(--brand-primary-lighter, var(--bs-primary));
}
[data-bs-theme=dark] section[data-sec=search] .ts-control {
  background-color: #262626;
}
[data-bs-theme=dark] .ts-dropdown {
  background-color: #262626;
}

.mega-menu-toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-menu-toggle__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}
.mega-menu-toggle__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.mega-menu-toggle__line--top {
  top: 4px;
}
.mega-menu-toggle__line--middle {
  top: 50%;
  transform: translateY(-50%);
}
.mega-menu-toggle__line--bottom {
  bottom: 4px;
}
.mega-menu-toggle.is-open .mega-menu-toggle__line--top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mega-menu-toggle.is-open .mega-menu-toggle__line--middle {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.mega-menu-toggle.is-open .mega-menu-toggle__line--bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mega-menu {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background-color: var(--bs-body-bg, #fff);
  border-bottom: 1px solid var(--bs-border-color, #dee2e6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1040;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear 0.35s;
}
.mega-menu.is-open {
  max-height: 80vh;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0s linear 0s;
}
.mega-menu__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bs-primary, #b21f24);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.1));
}
.mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu__list li {
  margin-bottom: 0.375rem;
}
.mega-menu__list a {
  color: var(--bs-body-color, #212529);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: color 0.15s ease;
  display: inline-block;
}
.mega-menu__list a:hover, .mega-menu__list a:focus {
  color: var(--bs-primary, #b21f24);
  text-decoration: underline;
}
.mega-menu__social a {
  transition: color 0.15s ease;
}
.mega-menu__social a:hover {
  color: var(--bs-primary, #b21f24) !important;
}
.mega-menu__links a {
  text-decoration: none;
  transition: color 0.15s ease;
}
.mega-menu__links a:hover {
  color: var(--bs-primary, #b21f24) !important;
  text-decoration: underline;
}

[data-bs-theme=dark] .mega-menu {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
[data-bs-theme=dark] .mega-menu__heading {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .mega-menu__section-label {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--bs-secondary-color);
    margin-bottom: 0.75rem;
  }
  .mega-menu__section-label--onband {
    margin-left: 0;
  }
  .mega-menu__nav-item + .mega-menu__nav-item {
    border-top: 1px solid var(--bs-border-color);
  }
  .mega-menu__nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9rem 0.25rem;
    color: var(--bs-body-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
  }
  .mega-menu__nav-link:hover, .mega-menu__nav-link:focus {
    color: var(--bs-primary);
  }
  .mega-menu__nav-icon {
    color: var(--bs-primary);
    font-size: 1.15rem;
    width: 1.4rem;
    text-align: center;
    flex: 0 0 auto;
  }
  .mega-menu__nav-icon--flag {
    display: block;
    height: 1.4rem;
    object-fit: cover;
    object-position: left center;
  }
  .mega-menu__nav-chevron {
    margin-left: auto;
    color: var(--bs-secondary-color);
    font-size: 0.85rem;
  }
  .mega-menu__brand-band {
    padding: 1.25rem calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    margin-inline: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    background: var(--bs-tertiary-bg);
    border-top: 1px solid var(--bs-border-color);
    border-bottom: 1px solid var(--bs-border-color);
  }
  .mega-menu__brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  .mega-menu__brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    min-height: 4rem;
    border-radius: 0.875rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    text-decoration: none;
    transition: border-color 0.15s ease, transform 0.15s ease;
  }
  .mega-menu__brand-card:hover {
    border-color: var(--bs-primary);
    transform: translateY(-1px);
  }
  .mega-menu__footer {
    margin-top: 1.5rem;
  }
  .mega-menu__footer--center {
    text-align: center;
  }
  .mega-menu__social--center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
  }
  .mega-menu__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
  }
  .mega-menu__social-btn:hover {
    background: var(--bs-primary);
    color: #fff;
  }
  .mega-menu__social-divider {
    width: 1px;
    height: 1.5rem;
    background: var(--bs-border-color);
    margin-inline: 0.25rem;
    flex: 0 0 auto;
  }
  .mega-menu__theme-toggle {
    border: 0;
    cursor: pointer;
  }
  .mega-menu__links--center {
    justify-content: center;
  }
}
@media (max-width: 991.98px) {
  .mega-menu {
    display: none !important;
  }
}
:root {
  --fab-size: 56px;
  --fab-gap: 12px;
  --fab-dock-inset: 60px;
  --fab-marquee-clearance: 0px;
  --fab-dock-bottom: max(var(--fab-dock-inset), var(--fab-marquee-clearance));
  --fab-dock-right: 24px;
}
:root:has(.trending-bar) {
  --fab-marquee-clearance: calc(var(--trending-bar-height, 2.5rem) + var(--fab-gap));
}
@media (max-width: 640px) {
  :root {
    --fab-size: 48px;
    --fab-dock-inset: calc(16px + env(safe-area-inset-bottom, 0px));
    --fab-dock-right: calc(16px + env(safe-area-inset-right, 0px));
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  :root {
    --fab-size: 48px;
    --fab-dock-inset: calc(12px + env(safe-area-inset-bottom, 0px));
    --fab-dock-right: calc(16px + env(safe-area-inset-right, 0px));
  }
}

/* Container for button + menu */
.fab-container {
  position: fixed;
  bottom: var(--fab-dock-bottom);
  right: var(--fab-dock-right);
  z-index: 9999;
}

/* The main circular button */
.fab-button {
  width: var(--fab-size);
  height: var(--fab-size);
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background: #1f2937;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fab-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  background: #2f3a49;
}

.fab-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.fab-button:focus-visible {
  outline: 2px solid #2f3a49;
  outline-offset: 2px;
}

/* Icon rotation when open */
.fab-button__icon {
  transition: transform 0.2s ease;
  line-height: 1;
}

.fab-container.open .fab-button__icon {
  transform: rotate(45deg);
}

/* The menu wrapper */
.fab-menu {
  position: absolute;
  bottom: calc(var(--fab-size) + 14px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.fab-container.open .fab-menu {
  pointer-events: auto;
}

/* Individual menu item (button/link) */
.fab-menu-item {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

/* Stagger animation when opening */
.fab-container.open .fab-menu-item {
  opacity: 1;
  transform: translateY(0);
}

.fab-container.open .fab-menu-item:nth-child(1) {
  transition-delay: 0.02s;
}

.fab-container.open .fab-menu-item:nth-child(2) {
  transition-delay: 0.04s;
}

.fab-container.open .fab-menu-item:nth-child(3) {
  transition-delay: 0.06s;
}

.fab-container.open .fab-menu-item:nth-child(4) {
  transition-delay: 0.08s;
}

.fab-container.open .fab-menu-item:nth-child(5) {
  transition-delay: 0.1s;
}

.fab-container.open .fab-menu-item:nth-child(6) {
  transition-delay: 0.12s;
}

.fab-container.open .fab-menu-item:nth-child(7) {
  transition-delay: 0.14s;
}

.fab-container.open .fab-menu-item:nth-child(8) {
  transition-delay: 0.16s;
}

/* Label bubble */
.fab-menu-label {
  background: #111827;
  color: #f9fafb;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-right: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Menu icon button/link */
.fab-menu-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  font-size: 18px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  text-decoration: none;
  color: #1f2937;
}

.fab-menu-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  background: #e5e7eb;
  color: #1f2937;
}

.fab-menu-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.fab-menu-button:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

/* Bootstrap Icons sizing */
.fab-menu-button .bi {
  font-size: 18px;
  line-height: 1;
}

.fab-button .bi {
  font-size: 24px;
  line-height: 1;
}

/* User profile special styling */
.fab-menu-item--user .fab-menu-label {
  padding: 8px 12px;
}

.fab-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fab-user-info strong {
  font-size: 14px;
  font-weight: 600;
}

.fab-user-logout {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}

.fab-user-logout:hover {
  color: #f9fafb;
}

/* Avatar styling */
.fab-menu-button--avatar {
  padding: 0;
  overflow: hidden;
}

.fab-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .fab-button {
    font-size: 20px;
  }
  .fab-button .bi {
    font-size: 20px;
  }
  .fab-menu-label {
    font-size: 12px;
    padding: 5px 8px;
  }
  .fab-menu-button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .fab-menu-button .bi {
    font-size: 16px;
  }
  .fab-avatar {
    width: 36px;
    height: 36px;
  }
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .fab-button {
    background: #3b82f6;
  }
  .fab-button:hover {
    background: #2563eb;
  }
  .fab-menu-label {
    background: #1f2937;
    color: #f9fafb;
  }
  .fab-menu-button {
    background: #374151;
    color: #f9fafb;
  }
  .fab-menu-button:hover {
    background: #4b5563;
    color: #f9fafb;
  }
}
/* Widget component styles
   - Uses CSS custom properties + Bootstrap 5 (`--bs-*`) vars only
   - Dark mode supported via `[data-bs-theme="dark"]`
*/
:root {
  --widget-title-size: var(--bs-body-font-size);
  --widget-bg: #ffffff;
  --widget-text: #000000;
  --widget-border: var(--bs-border-color);
  --widget-muted-border: #707070;
  --widget-link: var(--bs-link-color);
  --widget-link-hover: var(--bs-link-hover-color);
  --cb-post-title-size: 1rem;
  --cb-post-title-weight: 600;
  --cb-post-author-size: 0.8125rem;
  --cb-post-author-weight: 400;
}

[data-bs-theme=dark] {
  --widget-bg: #262626;
  --widget-text: #f5f5f5;
  --widget-border: #404040;
  --widget-muted-border: #525252;
  --widget-link: var(--bs-link-color);
  --widget-link-hover: var(--bs-link-hover-color);
}

.widget-list {
  background-color: var(--widget-bg);
  font-size: 20px;
  line-height: 28px;
  display: inline-block;
  /*li:nth-last-child(1) {
      border-bottom: 1px solid transparent;
  }*/
}
.widget-list__noborder {
  border: 1px solid transparent !important;
}
.widget-list__border {
  border-bottom: 1px solid var(--widget-border);
}
.widget-list__header {
  background-color: var(--widget-bg);
  padding-bottom: 5px;
}
.widget-list__header img {
  width: 20px;
}
.widget-list__header-title {
  color: var(--bs-primary);
  display: inline-block;
  font-family: var(--font-header);
  font-size: var(--widget-title-size);
  padding: 0;
}
.widget-list__author {
  font-size: var(--cb-post-author-size);
  font-weight: var(--cb-post-author-weight);
  display: block;
  font-family: var(--font-header);
  line-height: 1.2;
  color: var(--widget-text) !important;
}
.widget-list__body {
  margin: 0;
  /*font-family: $font-stack-title;*/
}
.widget-list__body img {
  margin: 10px 0;
  width: 92px;
}
.widget-list__hero {
  line-height: 1.2 !important;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--widget-border);
  border-radius: 6px;
}
.widget-list__hero img {
  border-radius: 6px 6px 0 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
.widget-list__body-title {
  color: var(--widget-text) !important;
  font-family: var(--font-header);
  font-size: var(--cb-post-title-size);
  font-weight: var(--cb-post-title-weight) !important;
  line-height: 1.2 !important;
}
.widget-list__body-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 80px;
  display: inline-block;
  margin-right: 15px;
  border-radius: 5px;
  border: solid 0.3px var(--widget-muted-border);
}
.widget-list__count {
  font-family: var(--font-title);
  color: var(--widget-text);
  font-weight: bold;
  font-size: 45px;
  width: 45px;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}

.cb-post-title {
  font-family: var(--font-header);
  font-size: var(--cb-post-title-size);
  font-weight: var(--cb-post-title-weight);
  line-height: 1.2;
}

.cb-post-author {
  font-family: var(--font-header);
  font-size: var(--cb-post-author-size);
  font-weight: var(--cb-post-author-weight);
  line-height: 1.2;
}

.cb-list-rank {
  font-family: var(--font-title);
  font-weight: 600;
  text-align: center;
}

.cb-list-heading {
  font-family: var(--font-header);
  font-size: var(--widget-title-size, 1.25rem);
}

.cb-post-thumb {
  display: block;
  overflow: hidden;
}
.cb-post-thumb img:not(.thm-vip-badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.thm-cartoon-widget {
  display: inline-block;
  font-size: var(--widget-title-size);
  position: relative;
}
.thm-cartoon-widget__button {
  font-family: var(--font-header);
  font-size: 18px;
  margin: 0;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  float: left;
  left: 20px;
  bottom: 24px;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 15px;
  white-space: nowrap;
  margin-bottom: -4px;
  transition: color 0.1s linear, border 0.1s linear, opacity 0.1s linear, background-color 0.1s linear;
}
.thm-cartoon-widget__button a {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
  padding: 16px;
}
.thm-cartoon-widget__button a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
}

.th-widget-columns__img {
  width: 85px;
  height: auto;
  aspect-ratio: auto 1/1;
}

:root {
  --widget-c2col-accent: var(--bs-primary);
  --widget-c2col-item-color: #000;
  --widget-c2col-item-border: #ccc;
  --widget-browse-link-color: var(--bs-primary);
  --widget-browse-link-border: #eee;
  --widget-browse-link-hover: #111;
}

[data-bs-theme=dark] {
  --widget-c2col-accent: var(--bs-primary);
  --widget-c2col-item-color: var(--bs-body-color);
  --widget-c2col-item-border: var(--widget-border);
  --widget-browse-link-color: var(--bs-link-color);
  --widget-browse-link-border: var(--widget-border);
  --widget-browse-link-hover: var(--bs-body-color);
}

.thm-widget-sb-d {
  font-family: var(--font-body, Helvetica, sans-serif);
  padding: 0;
}
.thm-widget-sb-d__title {
  font-family: var(--font-bolder, Helvetica, sans-serif);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}
.thm-widget-sb-d__title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background-color: var(--widget-c2col-accent);
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.thm-widget-sb-d__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.thm-widget-sb-d__item a {
  color: var(--widget-c2col-item-color);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s ease;
  display: block;
  border-bottom: none;
  padding-bottom: 0.5rem;
}
.thm-widget-sb-d__item a:hover {
  color: var(--widget-c2col-accent);
  border-bottom-color: var(--widget-c2col-accent);
}

.thm-widget-browse-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.thm-widget-browse-link {
  font-family: var(--font-bolder, Helvetica, sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--widget-browse-link-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--widget-browse-link-border);
}
.thm-widget-browse-link:hover {
  color: var(--widget-browse-link-hover);
}
.thm-widget-browse-link::after {
  content: "→";
  font-size: 1.2rem;
  line-height: 1;
}

.thm-pattern-1 {
  background-color: black;
}

.thm-pattern-2 {
  background-color: #f7f7f7;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 241, 243, 0.9) 100%), linear-gradient(rgba(186, 191, 197, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(186, 191, 197, 0.22) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  background-position: center, -1px -1px, -1px -1px;
}

.thm-pattern-3 {
  background-color: #f3f4f5;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 238, 240, 0.96) 100%), linear-gradient(rgba(194, 199, 205, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(194, 199, 205, 0.16) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 42%);
  background-size: auto, 44px 44px, 44px 44px, auto;
  background-position: center, -1px -1px, -1px -1px, center;
}

/* App Brand Widget component styles
   - Newsletter signup + THM News app promotion
   - Self-contained with custom fonts and CSS custom properties
*/
.ab-widget {
  --bs-bg-opacity: 1 !important;
  --ab-bg: linear-gradient(
      160deg,
      rgba(248, 244, 237, 0.92) 0%,
      rgba(255, 255, 255, 0.98) 38%,
      rgba(245, 235, 236, 0.94) 100%
  );
  --ab-bg-deep: #2b2b2b;
  --ab-red: var(--bs-primary, #b21f24);
  --ab-red-vivid: var(--brand-primary-vivid, #e52d27);
  --ab-red-dark: var(--brand-primary-dark, #8c1a1f);
  --ab-tile-bg: #4a4a4a;
  --ab-tile-border: #2f2f2f;
  --ab-white: #ffffff;
  --ab-text: #1a1a1a;
  --ab-muted: #5a5a5a;
  --ab-input-bg: #ffffff;
  --ab-input-text: #1a1a1a;
  --ab-input-placeholder: rgba(0, 0, 0, 0.5);
  --ab-border: rgba(0, 0, 0, 0.15);
  --ab-widget-border: rgba(0, 0, 0, 0.1);
  --ab-card-bg: #f1f1f1;
  --ab-card-inner-border: rgba(255, 255, 255, 0.7);
  --ab-card-shadow:
      0 1px 1px rgba(0, 0, 0, 0.05), 0 8px 16px -6px rgba(0, 0, 0, 0.12), 0 24px 48px -12px rgba(0, 0, 0, 0.18);
  --ab-divider: #c4c4c4;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--ab-bg);
  color: var(--ab-text);
  border: 1px solid var(--ab-widget-border);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ab-widget,
.ab-widget * {
  box-sizing: border-box;
}
.ab-widget::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.12) 0%, rgba(var(--bs-primary-rgb), 0) 70%);
  pointer-events: none;
  z-index: -1;
}
.ab-widget::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 66%);
  pointer-events: none;
  z-index: -1;
}

[data-bs-theme=dark] .ab-widget {
  --ab-bg: linear-gradient(
      160deg,
      rgba(26, 26, 26, 0.96) 0%,
      rgba(32, 32, 32, 0.98) 38%,
      rgba(44, 29, 30, 0.96) 100%
  );
  --ab-text: #ffffff;
  --ab-muted: #c7c7c7;
  --ab-input-bg: rgba(25, 25, 25, 0.82);
  --ab-input-text: #ffffff;
  --ab-input-placeholder: rgba(255, 255, 255, 0.8);
  --ab-border: rgba(255, 255, 255, 0.25);
  --ab-widget-border: rgba(255, 255, 255, 0.1);
  --ab-card-bg: rgba(25, 25, 25, 0.82);
  --ab-card-inner-border: rgba(255, 255, 255, 0.08);
  --ab-card-shadow:
      0 1px 1px rgba(0, 0, 0, 0.25), 0 8px 16px -6px rgba(0, 0, 0, 0.4), 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  --ab-divider: #b5b5b5;
}

.ab-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.ab-grid {
  display: block;
  flex: 1 1 56%;
  min-width: 0;
}

.ab-news {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 0 1 44%;
  max-width: 520px;
}

.ab-news-header {
  margin-bottom: 1.25rem;
}

.ab-eyebrow {
  display: inline-block;
  padding-bottom: 0.35rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--ab-red);
  font-family: var(--font-bolder);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ab-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0 0 0.65rem;
}

.ab-subtitle {
  font-size: 1.05rem;
  color: var(--ab-muted);
  margin: 0;
  line-height: 1.6;
}

.ab-form {
  margin-top: 1.4rem;
  width: 100%;
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.ab-input {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  padding: 0.95rem 1.1rem;
  background: var(--ab-input-bg);
  border: 1px solid var(--ab-border);
  color: var(--ab-input-text);
  font-size: 1rem;
  font-style: italic;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ab-input::placeholder {
  color: var(--ab-input-placeholder);
}
.ab-input:focus {
  outline: none;
  border-color: var(--ab-red);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.15);
}

.ab-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-shrink: 0;
  padding: 0.75rem 1.6rem;
  border: none;
  border-radius: 3px;
  background: var(--ab-red);
  color: var(--ab-white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ab-submit:hover {
  background: var(--ab-red-vivid);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(var(--bs-primary-rgb), 0.35);
}
.ab-submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.ab-news-status {
  margin-top: 0.95rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.ab-news-status[hidden] {
  display: none;
}
.ab-news-status.is-success {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ab-text);
  font-weight: 600;
}
.ab-news-status.is-error {
  color: var(--ab-red-vivid);
}
.ab-news-status .thm-nl-check {
  flex-shrink: 0;
  color: #1a9d4b;
  animation: thm-nl-pop 0.28s ease-out both;
}
@media (prefers-reduced-motion: reduce) {
  .ab-news-status .thm-nl-check {
    animation: none;
  }
}
.ab-news-status .thm-nl-msg {
  line-height: 1.3;
}

@keyframes thm-nl-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.ab-app {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.ab-app-card {
  flex: 0 1 480px;
  width: auto;
  max-width: 480px;
  padding: 1.4rem 1.5rem;
  border-radius: 8px;
  background: var(--ab-card-bg);
  box-shadow: var(--ab-card-shadow);
  position: relative;
  text-align: center;
}
.ab-app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border-top: 1px solid var(--ab-card-inner-border);
  pointer-events: none;
}

.ab-app-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.ab-app-icon {
  width: 72px;
  height: 72px;
}

.ab-app-divider {
  width: 1px;
  height: 72px;
  background: var(--ab-divider);
}

.ab-app-title {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.ab-app-title img {
  height: 20px;
  width: auto;
}
.ab-app-title span {
  color: var(--ab-red-vivid);
}

.ab-app-logo--dark {
  display: none;
}

[data-bs-theme=dark] .ab-app-logo--light {
  display: none;
}
[data-bs-theme=dark] .ab-app-logo--dark {
  display: inline;
}

.ab-app-text {
  font-size: 0.95rem;
  color: var(--ab-text);
  margin: 0.15rem 0;
  line-height: 1.4;
}

.ab-store-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  justify-content: center;
}
.ab-store-row a {
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ab-store-row a:hover {
  transform: translateY(-2px) scale(1.02);
}
.ab-store-row img {
  height: 36px;
  width: auto;
}

@media (max-width: 991.98px) {
  .ab-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .ab-news {
    align-items: center;
    text-align: center;
    flex-basis: auto;
    max-width: 640px;
    margin: 0 auto;
  }
  .ab-grid {
    flex-basis: auto;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .ab-widget {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .ab-form {
    flex-direction: column;
  }
  .ab-app-icon {
    width: 56px;
    height: 56px;
  }
  .ab-app-divider {
    height: 56px;
  }
}
/* Newsletters page (shared /newsletters route)
   - Single current-site newsletter signup, rendered for whatever brand is running
   - Visual family shared with the VIP benefits promo (_vip-benefits.scss) and the
     app brand widget (_app-brand-widget.scss): warm diagonal shell, brand-red eyebrow,
     tight serif hero title, red submit button.
*/
.nl-page {
  --nl-shell-bg: linear-gradient(
      135deg,
      rgba(248, 244, 237, 0.96) 0%,
      rgba(255, 255, 255, 1) 42%,
      rgba(245, 235, 236, 0.98) 100%
  );
  --nl-shell-border: rgba(0, 0, 0, 0.12);
  --nl-ink-soft: rgba(0, 0, 0, 0.72);
  --nl-red: var(--bs-primary, #b21f24);
  --nl-red-vivid: var(--brand-primary-vivid, #e52d27);
  --nl-radius: 1.1rem;
  --nl-card-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.08);
  padding-top: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}
.nl-page__shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3vw, 3.25rem);
  border: 1px solid var(--nl-shell-border);
  background: var(--nl-shell-bg);
  box-shadow: var(--nl-card-shadow);
  border-radius: var(--nl-radius);
  isolation: isolate;
}
.nl-page__shell::before, .nl-page__shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}
.nl-page__shell::before {
  top: -6rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.16) 0%, rgba(var(--bs-primary-rgb), 0) 72%);
}
.nl-page__shell::after {
  bottom: -7rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 68%);
}
.nl-page__shell > * {
  position: relative;
  z-index: 1;
}
.nl-page__hero {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  max-width: 44rem;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}
.nl-page__hero-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nl-page__eyebrow {
  width: fit-content;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--nl-red);
  font-family: var(--font-bolder);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nl-page__title {
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.nl-page__lede {
  max-width: 38rem;
  color: var(--nl-ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}
.nl-page__signup {
  max-width: 34rem;
  margin: 0 auto;
}
.nl-page__form {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
.nl-page__input {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  padding: 0.95rem 1.1rem;
  background: #fff;
  border: 1px solid var(--nl-shell-border);
  color: var(--bs-body-color);
  font-size: 1rem;
  font-style: italic;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nl-page__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.nl-page__input:focus {
  outline: none;
  border-color: var(--nl-red);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.15);
}
.nl-page__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-shrink: 0;
  padding: 0.75rem 1.6rem;
  border: none;
  border-radius: 3px;
  background: var(--nl-red);
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nl-page__submit:hover {
  background: var(--nl-red-vivid);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(var(--bs-primary-rgb), 0.35);
}
.nl-page__submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.nl-page__status {
  margin-top: 0.95rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.nl-page__status[hidden] {
  display: none;
}
.nl-page__status.is-success {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bs-body-color);
  font-weight: 600;
}
.nl-page__status.is-error {
  color: var(--nl-red-vivid);
}
.nl-page__status .thm-nl-check {
  flex-shrink: 0;
  color: #1a9d4b;
}
.nl-page__status .thm-nl-msg {
  line-height: 1.3;
}
.nl-page__fineprint {
  margin-top: 1rem;
  color: var(--nl-ink-soft);
  font-size: 0.85rem;
  text-align: center;
}

[data-bs-theme=dark] .nl-page {
  --nl-shell-bg: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.98) 0%,
      rgba(34, 34, 34, 0.98) 42%,
      rgba(44, 29, 30, 0.98) 100%
  );
  --nl-shell-border: rgba(255, 255, 255, 0.12);
  --nl-ink-soft: rgba(255, 255, 255, 0.72);
  --nl-card-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
}
[data-bs-theme=dark] .nl-page__input {
  background: rgba(25, 25, 25, 0.82);
  color: #fff;
}
[data-bs-theme=dark] .nl-page__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 575.98px) {
  .nl-page__shell {
    padding: 1.5rem 1.25rem;
  }
  .nl-page__form {
    flex-direction: column;
  }
}
.hscroll__track {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.hscroll__track::-webkit-scrollbar {
  display: none;
}

.hscroll__track--snap {
  scroll-snap-type: x mandatory;
}
.hscroll__track--snap > * {
  scroll-snap-align: var(--hscroll-snap-align, start);
}

.hscroll__track--fade {
  mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
}

.hscroll__wrapper {
  position: relative;
  overflow: hidden;
}

.hscroll__btn {
  --hscroll-arrow-fade: rgba(0, 0, 0, 0.6);
  --hscroll-arrow-fade-hover: rgba(0, 0, 0, 0.85);
  --hscroll-arrow-icon: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 48px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease;
  color: var(--hscroll-arrow-icon);
  padding: 0;
}
.hscroll__btn--prev {
  left: 0;
  border-radius: 0;
  background: linear-gradient(to right, var(--hscroll-arrow-fade) 0%, transparent 100%);
}
.hscroll__btn--prev:hover {
  background: linear-gradient(to right, var(--hscroll-arrow-fade-hover) 0%, transparent 100%);
}
.hscroll__btn--next {
  right: 0;
  border-radius: 0;
  background: linear-gradient(to left, var(--hscroll-arrow-fade) 0%, transparent 100%);
}
.hscroll__btn--next:hover {
  background: linear-gradient(to left, var(--hscroll-arrow-fade-hover) 0%, transparent 100%);
}
.hscroll__btn[data-hscroll-hidden=true] {
  opacity: 0 !important;
  pointer-events: none;
}

.hscroll--arrows-hover:hover .hscroll__btn:not([data-hscroll-hidden=true]) {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .hscroll--arrows-hover .hscroll__btn:not([data-hscroll-hidden=true]) {
    opacity: 0.8;
  }
}

.hscroll--arrows-always .hscroll__btn:not([data-hscroll-hidden=true]) {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .hscroll__btn {
    width: 36px;
  }
}
@media (min-width: 992px) {
  .hscroll__btn {
    width: 56px;
  }
}
[data-bs-theme=dark] .hscroll__btn {
  --hscroll-arrow-fade: rgba(0, 0, 0, 0.7);
  --hscroll-arrow-fade-hover: rgba(0, 0, 0, 0.9);
}

.watch-page {
  overflow-x: clip;
}

.watch-hero {
  --carousel-progress-duration: 6000ms;
  --watch-hero-aspect: 3 / 1;
  background-color: #000;
  --watch-hero-max-width: 1320px;
  --watch-hero-fade: 4%;
  position: relative;
  max-width: var(--watch-hero-max-width);
  margin-inline: auto;
}
.watch-hero::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #000;
  z-index: 0;
}
.watch-hero .carousel-item,
.watch-hero .watch-hero__banner {
  aspect-ratio: var(--watch-hero-aspect);
}
.watch-hero .watch-hero__banner {
  position: relative;
}
.watch-hero .watch-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(to right, transparent 0, black var(--watch-hero-fade), black calc(100% - var(--watch-hero-fade)), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black var(--watch-hero-fade), black calc(100% - var(--watch-hero-fade)), transparent 100%);
}
.watch-hero .watch-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 40%);
  display: flex;
  align-items: flex-end;
  padding-block: 1.5rem 3.5rem;
  padding-inline: clamp(1rem, var(--watch-hero-fade), 3rem);
}
.watch-hero .watch-hero__cta-slot {
  display: flex;
}
.watch-hero .watch-hero__cta {
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.watch-hero .watch-hero__cta:hover {
  background-color: #fff;
  color: #000;
}
.watch-hero .carousel-indicators {
  width: fit-content;
  max-width: calc(100% - 3rem);
  bottom: 1.25rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  gap: 0.65rem;
  margin: 0;
  align-items: center;
  z-index: 3;
}
.watch-hero .carousel-indicators button {
  width: 1.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  border: none;
  border-radius: 999px;
  opacity: 1;
  background: transparent;
  overflow: hidden;
  position: relative;
  transition: width 0.25s ease, min-width 0.25s ease, background-color 0.25s ease;
}
.watch-hero .carousel-indicators button.is-progress-active {
  width: 2.8125rem;
  min-width: 2.8125rem;
}
.watch-hero .carousel-indicator-progress {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  position: relative;
}
.watch-hero .carousel-indicator-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.98);
  transform-origin: left center;
  transform: scaleX(0);
}
.watch-hero .carousel-indicators .is-progress-active .carousel-indicator-progress::after {
  animation: carousel-progress var(--carousel-progress-duration) linear forwards;
}
.watch-hero .carousel-control-prev,
.watch-hero .carousel-control-next {
  top: 50%;
  bottom: auto;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 clamp(0.85rem, var(--watch-hero-fade), 2.5rem);
  z-index: 3;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.34);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-50%) scale(0.92);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.watch-hero .carousel-control-prev:hover,
.watch-hero .carousel-control-next:hover {
  background: rgba(7, 12, 22, 0.58);
}
.watch-hero .carousel-control-prev-icon,
.watch-hero .carousel-control-next-icon {
  width: 1.2rem;
  height: 1.2rem;
}
.watch-hero:hover .carousel-control-prev,
.watch-hero:hover .carousel-control-next {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.watch-section {
  position: relative;
}
.watch-section--contained .hscroll__btn {
  top: 50%;
  bottom: auto;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 0.85rem;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.34);
  backdrop-filter: blur(12px);
  transform: translateY(-50%) scale(0.92);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.watch-section--contained .hscroll__btn:hover {
  background: rgba(7, 12, 22, 0.58);
}
.watch-section--contained .hscroll__btn svg {
  width: 1.2rem;
  height: 1.2rem;
}
.watch-section--contained:hover .hscroll__btn:not([data-hscroll-hidden=true]) {
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}
.watch-section--contained .watch-scroll__track {
  padding-left: 0;
  padding-right: 0;
}
.watch-section--contained .watch-scroll__track .watch-episode {
  width: 100%;
}
@media (min-width: 576px) {
  .watch-section--contained .watch-scroll__track .watch-episode {
    width: calc((100% - 1rem) / 2);
  }
}
@media (min-width: 992px) {
  .watch-section--contained .watch-scroll__track .watch-episode {
    width: calc((100% - 2rem) / 3);
  }
}
@media (min-width: 1200px) {
  .watch-section--contained .watch-scroll__track .watch-episode {
    width: calc((100% - 3rem) / 4);
  }
}
@media (max-width: 767.98px) {
  .watch-section--contained .hscroll__btn:not([data-hscroll-hidden=true]) {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0 0.45rem;
    background: rgba(7, 12, 22, 0.4);
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
  }
}

.watch-section__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bs-body-color);
  margin: 0 0 1.25rem;
}
.watch-section__title--padded {
  padding-left: 0.75rem;
}
@media (min-width: 576px) {
  .watch-section__title--padded {
    padding-left: calc((100vw - 540px) / 2 + 0.75rem);
  }
}
@media (min-width: 768px) {
  .watch-section__title--padded {
    padding-left: calc((100vw - 720px) / 2 + 0.75rem);
  }
}
@media (min-width: 992px) {
  .watch-section__title--padded {
    padding-left: calc((100vw - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px) {
  .watch-section__title--padded {
    padding-left: calc((100vw - 1140px) / 2 + 0.75rem);
  }
}
@media (min-width: 1400px) {
  .watch-section__title--padded {
    padding-left: calc((100vw - 1320px) / 2 + 0.75rem);
  }
}

.watch-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.watch-section__more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bs-primary);
  text-decoration: none;
}
.watch-section__more .bi-chevron-right {
  flex-shrink: 0;
}
.watch-section__more:hover {
  text-decoration: underline;
}

.watch-loadmore {
  padding: 0.6rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.watch-scroll {
  position: relative;
  overflow: hidden;
}

.watch-scroll__track {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  padding-left: 0.75rem;
}
@media (min-width: 576px) {
  .watch-scroll__track {
    padding-left: calc((100vw - 540px) / 2 + 0.75rem);
  }
}
@media (min-width: 768px) {
  .watch-scroll__track {
    padding-left: calc((100vw - 720px) / 2 + 0.75rem);
  }
}
@media (min-width: 992px) {
  .watch-scroll__track {
    padding-left: calc((100vw - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px) {
  .watch-scroll__track {
    padding-left: calc((100vw - 1140px) / 2 + 0.75rem);
  }
}
@media (min-width: 1400px) {
  .watch-scroll__track {
    padding-left: calc((100vw - 1320px) / 2 + 0.75rem);
  }
}
.watch-scroll__track {
  scrollbar-width: none;
}
.watch-scroll__track::-webkit-scrollbar {
  display: none;
}

.watch-episode {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.watch-episode:hover {
  transform: translateY(-2px);
  border-color: var(--bs-border-color-translucent);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12);
}
.watch-episode:hover .watch-episode__play-overlay {
  opacity: 1;
}

.watch-scroll__track .watch-episode {
  flex: 0 0 auto;
  width: 280px;
  height: auto;
}

.watch-episode__thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.watch-episode__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.watch-episode:hover .watch-episode__thumb {
  transform: scale(1.04);
}

.watch-episode__badges {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.375rem;
}

.watch-episode__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 0.25rem;
}

.watch-episode__duration {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  letter-spacing: 0.03em;
}

.watch-episode__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.watch-episode__info {
  padding: 0.75rem 0.875rem 0.875rem;
  flex: 1;
}

.watch-episode__date {
  font-size: 0.7rem;
  color: var(--bs-secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.watch-episode__title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.25rem 0 0;
  color: var(--bs-body-color);
}

.watch-episode__show {
  font-size: 0.7rem;
  color: var(--bs-secondary-color);
}

.watch-podcast {
  flex: 0 0 auto;
  width: 180px;
}
.watch-podcast:hover {
  transform: none;
  box-shadow: var(--bs-box-shadow-sm);
}
.watch-podcast:hover .podcast-show-card__image img {
  transform: none;
}
.watch-podcast .podcast-show-card__play-icon {
  font-size: 2.5rem;
}

.watch-host-page {
  --watch-host-accent: #be2f29;
  --watch-host-surface: color-mix(in srgb, var(--watch-host-accent) 8%, var(--bs-body-bg));
  padding-bottom: 4rem;
  overflow-x: clip;
}

.watch-hero--banner {
  background-color: #000;
  margin-bottom: 2.5rem;
  --watch-hero-max-width: 1320px;
  --watch-hero-fade: 4%;
  position: relative;
  max-width: var(--watch-hero-max-width);
  margin-inline: auto;
}
.watch-hero--banner::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #000;
  z-index: 0;
}
.watch-hero--banner .watch-hero__image {
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0, black var(--watch-hero-fade), black calc(100% - var(--watch-hero-fade)), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black var(--watch-hero-fade), black calc(100% - var(--watch-hero-fade)), transparent 100%);
}

.watch-host-page__episodes {
  display: grid;
  gap: 1.5rem;
}

.watch-post-page__media,
.watch-post-page__content,
.watch-post-page__promo,
.watch-post-page__related,
.watch-post-page__comments,
.watch-post-page__widget {
  position: relative;
  z-index: 1;
}

.watch-post-page__media .brid {
  margin-bottom: 0 !important;
  overflow: hidden;
  border-radius: 0;
  background-color: #000;
}

.watch-post-page__unavailable {
  min-height: min(56vw, 32rem);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(7, 9, 13, 0.96) 0%, rgba(7, 9, 13, 0.78) 100%), linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 35%, transparent), transparent);
  color: #fff;
  padding: 2rem;
}

.watch-post-page__gated {
  position: relative;
  min-height: min(56vw, 32rem);
  background-color: #000;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.watch-post-page__gated--image {
  min-height: 0;
}

.watch-post-page__gated-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.watch-gated-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(0.85rem, 2.2vw, 1.5rem) clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(0deg, rgba(7, 9, 13, 0.92) 0%, rgba(7, 9, 13, 0.85) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.watch-gated-ribbon__badge {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: clamp(2rem, 4vw, 2.75rem);
}
.watch-gated-ribbon__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  flex: 1 1 auto;
}
.watch-gated-ribbon__headline {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
}
.watch-gated-ribbon__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.watch-gated-ribbon__login {
  font-family: var(--font-bolder);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  cursor: pointer;
}
.watch-gated-ribbon__login:hover, .watch-gated-ribbon__login:focus {
  color: #fff;
}

@media (max-width: 575.98px) {
  .watch-gated-ribbon {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .watch-gated-ribbon__body {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.watch-post-page__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.watch-post-page__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.watch-post-page__summary {
  font-size: 1.02rem;
  line-height: 1.75;
}
.watch-post-page__summary > *:last-child {
  margin-bottom: 0;
}

.watch-post-page__body {
  color: var(--bs-body-color);
}

.watch-post-page__meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs-secondary-color);
}

.watch-post-page__meta-value {
  color: var(--bs-body-color);
}

.watch-post-page__meta-row {
  row-gap: 0.75rem;
}

.watch-post-page__date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bs-secondary-color);
  white-space: nowrap;
}

.watch-post-page__meta-row .watch-post-page__share {
  position: relative;
  padding-left: 1rem;
}
.watch-post-page__meta-row .watch-post-page__share::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.5rem;
  background-color: var(--bs-border-color);
}

.watch-post-page__related h4.pc {
  margin-bottom: 1rem;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.watch-post-page__sidebar .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 1rem;
}

.watch-post-page__sidebar .row > * {
  width: 100%;
}

.watch-post-page__sidebar .widget-list__hero {
  height: 100%;
  margin-bottom: 0 !important;
}

.watch-post-page__sidebar .widget-list__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0;
}

.watch-post-page__sidebar .widget-list__body-title {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

[data-bs-theme=dark] .watch-section__title {
  color: #e5e5e5;
}
[data-bs-theme=dark] .watch-host__name,
[data-bs-theme=dark] .watch-episode__title {
  color: #f0f0f0;
}
[data-bs-theme=dark] .watch-episode__date,
[data-bs-theme=dark] .watch-episode__show {
  color: #a1a1a1;
}
[data-bs-theme=dark] .watch-host__avatar-wrap {
  border-color: transparent;
}
.watch-host:hover [data-bs-theme=dark] .watch-host__avatar-wrap {
  border-color: var(--bs-primary);
}
[data-bs-theme=dark] .watch-episode {
  background: #141414;
  border-color: #404040;
}
[data-bs-theme=dark] .watch-episode:hover {
  border-color: #595959;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.5);
}
[data-bs-theme=dark] .watch-post-page__summary,
[data-bs-theme=dark] .watch-post-page__meta-label {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767.98px) {
  .watch-hero {
    --watch-hero-aspect: 16 / 9;
  }
  .watch-hero .watch-hero__overlay {
    padding-block: 0.75rem 2.25rem;
  }
  .watch-hero .watch-hero__cta {
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
  }
  .watch-hero .carousel-indicators {
    max-width: calc(100% - 2rem);
    bottom: 0.5rem;
    left: 50%;
    gap: 0.4rem;
  }
  .watch-hero .carousel-indicators button {
    width: 0.85rem;
    min-width: 0.85rem;
    height: 0.85rem;
  }
  .watch-hero .carousel-indicators button.is-progress-active {
    width: 2.25rem;
    min-width: 2.25rem;
  }
  .watch-hero .carousel-control-prev,
  .watch-hero .carousel-control-next {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0 0.45rem;
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
    background: rgba(7, 12, 22, 0.4);
  }
  .watch-scroll__track .watch-episode {
    width: 230px;
  }
  .watch-podcast {
    width: 140px;
  }
  .watch-host {
    width: 100px;
  }
  .watch-host__avatar-wrap {
    width: 90px;
    height: 90px;
  }
  .watch-post-page__layout::before {
    inset: 1rem 0 auto;
    height: 10rem;
  }
  .watch-post-page__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .watch-scroll__track .watch-episode {
    width: 260px;
  }
  .watch-podcast {
    width: 160px;
  }
  .watch-host {
    width: 120px;
  }
  .watch-host__avatar-wrap {
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 992px) {
  .watch-post-page__sidebar {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}
.comments-vip {
  --cv-bg: linear-gradient(
      160deg,
      rgba(248, 244, 237, 0.92) 0%,
      rgba(255, 255, 255, 0.98) 38%,
      rgba(245, 235, 236, 0.94) 100%
  );
  --cv-border: rgba(0, 0, 0, 0.1);
  --cv-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.06);
  --cv-ink: rgba(0, 0, 0, 0.78);
  --cv-ink-muted: rgba(0, 0, 0, 0.52);
  --cv-radius: 1rem;
  --cv-rule: var(--bs-primary, #b21f24);
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-block: 0;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  background: var(--cv-bg);
  box-shadow: var(--cv-shadow);
  text-align: center;
  isolation: isolate;
}
.comments-vip::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.12) 0%, rgba(var(--bs-primary-rgb), 0) 70%);
  pointer-events: none;
  z-index: -1;
}
.comments-vip::after {
  content: "";
  position: absolute;
  bottom: -6rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 66%);
  pointer-events: none;
  z-index: -1;
}
.comments-vip__badge {
  display: block;
  width: auto;
  height: 2.75rem;
  flex-shrink: 0;
}
.comments-vip__rule {
  width: 2.5rem;
  height: 2px;
  border: none;
  margin: 0;
  background: linear-gradient(90deg, var(--cv-rule), rgba(var(--bs-primary-rgb), 0.18));
  opacity: 1;
}
.comments-vip__heading {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bs-body-color);
}
.comments-vip__copy {
  max-width: 30rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--bs-secondary-color);
}
.comments-vip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding-top: 0.25rem;
}
.comments-vip .btn-border-pulse {
  height: 42px;
  padding-inline: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.comments-vip__subscribe-link {
  position: relative;
  font-family: var(--font-bolder);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-body-color);
}
.comments-vip__subscribe-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0.65);
  transform-origin: left center;
  transition: transform 0.18s ease;
}
.comments-vip__subscribe-link:hover::after {
  transform: scaleX(1);
}

[data-bs-theme=dark] .comments-vip {
  --cv-bg: linear-gradient(
      160deg,
      rgba(26, 26, 26, 0.96) 0%,
      rgba(32, 32, 32, 0.98) 38%,
      rgba(44, 29, 30, 0.96) 100%
  );
  --cv-border: rgba(255, 255, 255, 0.1);
  --cv-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.22);
  --cv-ink: rgba(255, 255, 255, 0.78);
  --cv-ink-muted: rgba(255, 255, 255, 0.52);
}
[data-bs-theme=dark] .comments-vip__subscribe-link {
  color: var(--bs-body-color);
}

:root {
  --podcast-radius: 0.75rem;
  --podcast-radius-sm: 0.375rem;
  --podcast-radius-lg: 1rem;
  --podcast-transition: 0.2s ease-in-out;
  --podcast-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --podcast-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
  --podcast-accent: var(--bs-primary, #b21f24);
  --podcast-accent-vivid: var(--brand-primary-vivid, #e52d27);
  --podcast-accent-dark: var(--brand-primary-dark, #8c1a1f);
  --podcast-surface: var(--bs-body-bg, #fff);
  --podcast-surface-raised: var(--bs-tertiary-bg, #f8f9fa);
  --podcast-surface-hover: var(--bs-secondary-bg, #e9ecef);
  --podcast-border: var(--bs-border-color, #dee2e6);
  --podcast-text: var(--bs-body-color, #212529);
  --podcast-text-muted: var(--bs-secondary-color, #6c757d);
  --podcast-surface-gradient: linear-gradient(
      160deg,
      rgba(248, 244, 237, 0.92) 0%,
      rgba(255, 255, 255, 0.98) 38%,
      rgba(245, 235, 236, 0.94) 100%
  );
  --podcast-glow-red: radial-gradient(
      circle,
      rgba(var(--bs-primary-rgb), 0.12) 0%,
      rgba(var(--bs-primary-rgb), 0) 70%
  );
  --podcast-glow-dark: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 66%);
  --podcast-card-shadow:
      0 1px 1px rgba(0, 0, 0, 0.05), 0 8px 16px -6px rgba(0, 0, 0, 0.12), 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

[data-bs-theme=dark] {
  --podcast-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --podcast-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.45);
  --podcast-surface-raised: rgba(255, 255, 255, 0.04);
  --podcast-surface-hover: rgba(255, 255, 255, 0.08);
  --podcast-surface-gradient: linear-gradient(
      160deg,
      rgba(26, 26, 26, 0.96) 0%,
      rgba(32, 32, 32, 0.98) 38%,
      rgba(44, 29, 30, 0.96) 100%
  );
  --podcast-card-shadow:
      0 1px 1px rgba(0, 0, 0, 0.25), 0 8px 16px -6px rgba(0, 0, 0, 0.4), 0 24px 48px -12px rgba(0, 0, 0, 0.5);
}

.podcast-help__app, .podcast-now-playing__card, .podcast-show__header--hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--podcast-surface-gradient);
  border: 1px solid var(--podcast-border);
  border-radius: var(--podcast-radius-lg);
}
.podcast-help__app::before, .podcast-now-playing__card::before, .podcast-show__header--hero::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: var(--podcast-glow-red);
  pointer-events: none;
  z-index: -1;
}
.podcast-help__app::after, .podcast-now-playing__card::after, .podcast-show__header--hero::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: var(--podcast-glow-dark);
  pointer-events: none;
  z-index: -1;
}

.podcast-help__eyebrow, .podcast-show__eyebrow {
  display: inline-block;
  padding-bottom: 0.35rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--podcast-accent);
  font-family: var(--font-bolder, inherit);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--podcast-text);
  line-height: 1;
}

.podcast-show-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  border-radius: var(--podcast-radius);
  overflow: hidden;
  transition: transform var(--podcast-transition), box-shadow var(--podcast-transition);
}

.podcast-show-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--podcast-card-shadow);
  text-decoration: none;
  color: inherit;
}

.podcast-show-card:focus-visible {
  outline: 2px solid var(--podcast-accent);
  outline-offset: 2px;
}

.podcast-show-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--podcast-radius);
  position: relative;
  background: var(--podcast-surface-raised);
}

.podcast-show-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.podcast-show-card:hover .podcast-show-card__image img {
  transform: scale(1.06);
}

.podcast-show-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(var(--bs-primary-rgb), 0.55) 0%, color-mix(in srgb, var(--podcast-accent-dark) 20%, transparent) 38%, transparent 62%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 45%, transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.podcast-show-card:hover .podcast-show-card__overlay {
  opacity: 1;
}

.podcast-show-card__play-icon {
  font-size: 3rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transform: scale(0.8);
  transition: transform 0.3s ease-out;
}

.podcast-show-card:hover .podcast-show-card__play-icon {
  transform: scale(1);
}

.podcast-show-card .thm-vip-badge {
  z-index: 2;
}

.podcast-show__header--hero {
  padding: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--podcast-border);
}
@media (min-width: 768px) {
  .podcast-show__header--hero {
    padding: 2.25rem 2.5rem;
  }
}

.podcast-show__artwork {
  width: 280px;
  height: 280px;
  border-radius: var(--podcast-radius);
  object-fit: cover;
  box-shadow: var(--podcast-card-shadow);
}

.podcast-show__header-info {
  min-width: 0;
}

@media (max-width: 575.98px) {
  .podcast-show__header.podcast-show__header {
    align-items: stretch !important;
    text-align: left !important;
    gap: 1.25rem;
  }
  .podcast-show__header--hero {
    padding: 0 1.25rem 1.5rem;
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .podcast-show__header-art {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
  .podcast-show__artwork {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 3px solid var(--podcast-accent);
    display: block;
  }
  .podcast-show__header-info {
    padding: 0;
  }
  .podcast-show__providers.podcast-show__providers {
    justify-content: flex-start !important;
  }
}
.podcast-show__show-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--podcast-accent);
  transition: opacity var(--podcast-transition);
}

.podcast-show__show-link:hover {
  opacity: 0.8;
  color: var(--podcast-accent);
}

.podcast-show__title {
  font-family: var(--font-title, inherit);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.podcast-show__title--episode {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.podcast-show__vip {
  line-height: 1;
  margin-bottom: 0.5rem;
}
.podcast-show__vip .thm-vip-sublevel {
  height: 15px;
  vertical-align: top;
  margin: 0;
}

.podcast-show__description {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.podcast-show__provider-link {
  display: inline-block;
  transition: opacity var(--podcast-transition), transform var(--podcast-transition);
  border-radius: var(--podcast-radius-sm);
}

.podcast-show__provider-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.podcast-show__provider-link img {
  height: 32px;
  width: auto;
  max-width: 150px;
}

.podcast-show__rss-url {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--podcast-accent);
  border-radius: var(--podcast-radius-sm);
  padding: 0.625rem 1rem;
  overflow-x: auto;
  white-space: nowrap;
}

[data-bs-theme=dark] .podcast-show__rss-url {
  background: rgba(255, 255, 255, 0.05);
}

.podcast-show__rss-url code {
  font-size: 0.8125rem;
  color: var(--podcast-accent);
  word-break: break-all;
  white-space: normal;
}

.podcast-now-playing {
  margin-bottom: 2.5rem;
}

.podcast-now-playing__card {
  box-shadow: var(--podcast-card-shadow);
}

.podcast-now-playing__content {
  padding: 1.75rem 1.75rem 1.5rem;
}

.podcast-now-playing__heading {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--podcast-border);
}

.podcast-now-playing__heading-text {
  min-width: 0;
}

.podcast-now-playing__kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.podcast-now-playing__show {
  color: var(--podcast-accent);
}

.podcast-now-playing__kicker-sep {
  color: var(--podcast-text-muted);
  opacity: 0.6;
}

.podcast-now-playing__date {
  color: var(--podcast-text-muted);
  font-variant-numeric: tabular-nums;
}

.podcast-now-playing__title {
  font-family: var(--font-title, inherit);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--podcast-text);
  padding-left: 1rem;
  border-left: 3px solid var(--podcast-accent);
}

.podcast-now-playing__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}

.podcast-now-playing__title a:hover,
.podcast-now-playing__title a:focus {
  color: var(--podcast-accent);
  background-size: 100% 1px;
}

.podcast-now-playing__player {
  position: relative;
  margin-bottom: 1.25rem;
}

.podcast-now-playing__player podcast-player-vue {
  display: block;
}
@media (min-width: 768px) {
  .podcast-now-playing__player podcast-player-vue {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--podcast-border);
    border-radius: var(--podcast-radius);
    padding: 0.75rem 1rem;
  }
}

@media (min-width: 768px) {
  [data-bs-theme=dark] .podcast-now-playing__player podcast-player-vue {
    background: rgba(255, 255, 255, 0.04);
  }
}

.podcast-now-playing__description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--podcast-text);
  padding-top: 1.25rem;
  border-top: 1px solid var(--podcast-border);
}

.podcast-now-playing__subscribe {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px dashed var(--podcast-accent);
  border-radius: var(--podcast-radius-sm);
  padding: 1rem 1.25rem;
}

[data-bs-theme=dark] .podcast-now-playing__subscribe {
  background: rgba(255, 255, 255, 0.04);
}

.podcast-now-playing__subscribe > i {
  font-size: 1.25rem;
  color: var(--podcast-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.podcast-now-playing__subscribe a {
  color: var(--podcast-accent);
}

.plyr {
  --plyr-color-main: var(--podcast-accent);
  --plyr-audio-controls-background: transparent;
  --plyr-audio-control-color: var(--podcast-text);
  --plyr-range-fill-background: var(--podcast-accent);
}

.plyr--audio .plyr__controls {
  background: transparent;
  padding: 0;
  border-radius: 0;
  gap: 0.25rem;
  justify-content: flex-start;
}

.plyr--audio .plyr__controls .plyr__time {
  padding: 0;
  margin-left: 0.25rem;
}

.plyr--audio .plyr__controls .plyr__time--current {
  margin-left: auto;
}

.plyr--audio .plyr__controls > .plyr__control:first-child {
  margin-right: 0;
}

.plyr--audio .plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 0.25rem;
}
@media (min-width: 768px) {
  .plyr--audio .plyr__controls .plyr__controls__item.plyr__progress__container {
    display: none;
  }
}

@media (min-width: 768px) {
  .plyr--audio .plyr__controls .plyr__control[data-plyr=rewind],
  .plyr--audio .plyr__controls .plyr__control[data-plyr=fast-forward] {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .plyr--audio .plyr__controls {
    gap: 0.125rem;
  }
  .plyr--audio .plyr__controls .plyr__control {
    padding: 0.375rem;
  }
  .plyr--audio .plyr__controls .plyr__time {
    font-size: 0.8125rem;
    margin-left: 0.125rem;
  }
  .plyr--audio .plyr__volume {
    min-width: 60px;
    max-width: 80px;
    margin-right: 0.5rem;
  }
}
[data-bs-theme=dark] .plyr {
  --plyr-audio-control-color: var(--bs-body-color, #f5f5f5);
}

.plyr--audio .plyr__controls .plyr__control[data-plyr=play] {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  padding: 0;
  margin-right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--podcast-accent);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9);
  transition: transform var(--podcast-transition), background var(--podcast-transition), box-shadow var(--podcast-transition);
}

[data-bs-theme=dark] .plyr--audio .plyr__controls .plyr__control[data-plyr=play] {
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

.plyr--audio .plyr__controls .plyr__control[data-plyr=play] svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.plyr--audio .plyr__controls .plyr__control[data-plyr=play][aria-pressed=true] svg {
  margin-left: 0;
}

.plyr--audio .plyr__controls .plyr__control[data-plyr=play]:hover,
.plyr--audio .plyr__controls .plyr__control[data-plyr=play]:focus-visible {
  color: #fff;
  background: var(--podcast-accent-vivid);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9), 0 4px 14px -4px rgba(var(--bs-primary-rgb), 0.5);
  transform: scale(1.05);
}

.plyr--audio .plyr__controls .plyr__control[data-plyr=play]:active {
  transform: scale(0.97);
}

@media (max-width: 575.98px) {
  .plyr--audio .plyr__controls .plyr__control[data-plyr=play] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 0.5rem;
    box-shadow: inset 0 0 0 2.5px rgba(255, 255, 255, 0.9);
  }
  .plyr--audio .plyr__controls .plyr__control[data-plyr=play] svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 767.98px) {
  .plyr--audio .plyr__controls {
    flex-wrap: wrap;
    align-items: center;
  }
  .plyr--audio .plyr__controls::after {
    content: "";
    order: 4;
    flex: 0 0 100%;
    height: 0.5rem;
  }
  .plyr--audio .plyr__controls .plyr__time--current {
    order: 1;
    margin-left: 0;
  }
  .plyr--audio .plyr__controls .plyr__controls__item.plyr__progress__container {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    margin: 0 0.625rem;
  }
  .plyr--audio .plyr__controls .plyr__time--duration {
    order: 3;
    margin-left: 0;
  }
  .plyr--audio .plyr__controls .plyr__time + .plyr__time {
    display: block;
  }
  .plyr--audio .plyr__controls .plyr__time + .plyr__time::before {
    content: none;
  }
  .plyr--audio .plyr__controls .plyr__control[data-plyr=rewind] {
    order: 5;
  }
  .plyr--audio .plyr__controls .plyr__control[data-plyr=play] {
    order: 6;
    margin: 0 0.5rem;
  }
  .plyr--audio .plyr__controls .plyr__control[data-plyr=fast-forward] {
    order: 7;
  }
  .plyr--audio .plyr__controls .plyr__volume {
    order: 8;
    margin-left: auto;
  }
  .plyr--audio .plyr__controls .plyr__menu {
    order: 9;
  }
}
.podcast-waveform {
  height: 80px;
  padding: 0.5rem 0.75rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .podcast-waveform {
    height: 96px;
    padding: 0 0 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--podcast-border);
  }
}

.podcast-waveform.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--podcast-text-muted);
  border-top-color: transparent;
  border-radius: 50%;
  animation: waveform-spin 0.8s linear infinite;
}

@keyframes waveform-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
[data-bs-theme=dark] .podcast-waveform {
  background-color: rgba(255, 255, 255, 0.05);
}

.podcast-episodes-section {
  margin-top: 2.5rem;
}

.podcast-episodes-section__header {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding-bottom: 0.875rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--podcast-accent);
}

.podcast-episodes-section__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--podcast-accent);
}

.podcast-episodes-section__title {
  font-family: var(--font-title, inherit);
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--podcast-text);
}

.episodes-container {
  max-height: 640px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--podcast-border) transparent;
  background: var(--podcast-surface-gradient);
  border: 1px solid var(--podcast-border);
  border-radius: var(--podcast-radius-lg);
  box-shadow: var(--podcast-card-shadow);
}

.episodes-container::-webkit-scrollbar {
  width: 6px;
}

.episodes-container::-webkit-scrollbar-track {
  background: transparent;
}

.episodes-container::-webkit-scrollbar-thumb {
  background: var(--podcast-border);
  border-radius: 3px;
}

.episodes-container::-webkit-scrollbar-thumb:hover {
  background: var(--podcast-text-muted);
}

.podcast-episode-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1rem;
  padding: 1.125rem 1rem 1.125rem 1.25rem;
  cursor: pointer;
  transition: background-color var(--podcast-transition);
}
.podcast-episode-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--podcast-border);
}
.podcast-episode-card:last-child::after {
  display: none;
}
.podcast-episode-card:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.06);
}
.podcast-episode-card:focus-visible {
  outline: 2px solid var(--podcast-accent);
  outline-offset: -2px;
}

[data-bs-theme=dark] .podcast-episode-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.podcast-episode-card__rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background-color var(--podcast-transition);
}

.podcast-episode-card.selected {
  background-color: rgba(var(--bs-primary-rgb), 0.08);
}
.podcast-episode-card.selected .podcast-episode-card__rail {
  background: var(--podcast-accent);
}

[data-bs-theme=dark] .podcast-episode-card.selected {
  background-color: rgba(var(--bs-primary-rgb), 0.16);
}

.podcast-episode-card__play-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: 2px solid var(--podcast-accent);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--podcast-accent);
  background: transparent;
  transition: color var(--podcast-transition), background var(--podcast-transition), box-shadow var(--podcast-transition), transform var(--podcast-transition);
}

.podcast-episode-card__play-btn i {
  font-size: 1.125rem;
  margin-left: 2px;
}

.podcast-episode-card:hover .podcast-episode-card__play-btn,
.podcast-episode-card.selected .podcast-episode-card__play-btn {
  color: #fff;
  border-color: transparent;
  background: var(--podcast-accent);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9);
  transform: scale(1.04);
}

.podcast-episode-card:hover .podcast-episode-card__play-btn {
  background: var(--podcast-accent-vivid);
}

.podcast-episode-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.podcast-episode-card__eyebrow {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--podcast-accent);
  line-height: 1;
}

.podcast-episode-card__title {
  font-family: var(--font-title, inherit);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--podcast-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-episode-card.selected .podcast-episode-card__title {
  color: var(--podcast-accent);
}

.podcast-episode-card__meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--podcast-text-muted);
  line-height: 1.2;
}

.podcast-episode-card__meta-sep {
  opacity: 0.5;
}

.podcast-episode-card__runtime {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

#episodes-sentinel {
  padding: 1rem 0;
  text-align: center;
}

#episodes-sentinel .spinner-border {
  display: none;
}

#episodes-sentinel.loading .spinner-border {
  display: inline-block;
}

.podcast-help__title {
  font-family: var(--font-title, inherit);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--podcast-text);
  margin: 0;
}

.podcast-help__app {
  box-shadow: var(--podcast-card-shadow);
  padding: 1.5rem 1.75rem;
}

.podcast-help__app-title {
  font-family: var(--font-title, inherit);
}
.podcast-help__app-title i {
  color: var(--podcast-accent);
}

.podcast-help__steps {
  line-height: 1.7;
}
.podcast-help__steps strong {
  color: var(--podcast-accent);
}

@media (max-width: 767.98px) {
  .podcast-show__title {
    font-size: 1.375rem;
  }
  .podcast-episodes-section__title {
    font-size: 1.375rem;
  }
  .podcast-episode-card {
    padding: 0.875rem 0.875rem 0.875rem 1rem;
    column-gap: 0.75rem;
  }
  .podcast-episode-card__play-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .podcast-episode-card__play-btn i {
    font-size: 1rem;
  }
  .podcast-episode-card__title {
    font-size: 0.9375rem;
  }
  .podcast-episode-card__meta {
    font-size: 0.75rem;
  }
  .episodes-container {
    max-height: 480px;
  }
  .podcast-now-playing__content {
    padding: 1.25rem 1rem 1rem;
  }
  .podcast-now-playing__heading {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .podcast-now-playing__kicker {
    font-size: 0.625rem;
    margin-bottom: 0.5rem;
  }
  .podcast-now-playing__title {
    font-size: 1.1875rem;
    padding-left: 0.75rem;
    border-left-width: 2px;
  }
  .podcast-now-playing__description {
    font-size: 0.875rem;
    padding-top: 1rem;
  }
}
.cb-rec-inline {
  font-family: var(--font-body, Helvetica, sans-serif) !important;
}
.cb-rec-inline img {
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  display: inline !important;
}

.cb-rec-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.cb-rec-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}
[data-bs-theme=dark] .cb-rec-head::after {
  background: rgba(255, 255, 255, 0.14);
}

.cb-rec-chip {
  font-family: var(--font-bolder, var(--font-body, Helvetica, sans-serif));
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bs-primary, #b21f24);
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
}

.cb-rec-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.cb-rec-cards--stack {
  grid-template-columns: 1fr;
}
@media (max-width: 540px) {
  .cb-rec-cards {
    grid-template-columns: 1fr;
  }
}

.cb-rec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.018);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 1.1rem 1.1rem 1rem;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-bs-theme=dark] .cb-rec-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}
.cb-rec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bs-primary, #b21f24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-rec-card:hover, .cb-rec-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.13);
  border-color: transparent;
}
.cb-rec-card:hover::before, .cb-rec-card:focus-visible::before {
  transform: scaleX(1);
}
.cb-rec-card:hover .cb-rec-card__title, .cb-rec-card:focus-visible .cb-rec-card__title {
  color: var(--bs-primary, #b21f24);
}
.cb-rec-card:hover .cb-rec-card__arrow, .cb-rec-card:focus-visible .cb-rec-card__arrow {
  transform: translateX(2px);
  opacity: 1;
}
[data-bs-theme=dark] .cb-rec-card:hover, [data-bs-theme=dark] .cb-rec-card:focus-visible {
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.6);
}
.cb-rec-card:focus-visible {
  outline: 2px solid var(--bs-primary, #b21f24);
  outline-offset: 2px;
}

.cb-rec-card__title {
  font-family: var(--font-bolder, Helvetica, sans-serif) !important;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--bs-body-color, #1a1a1a);
  margin-bottom: 0.5rem;
  transition: color 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-rec-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.cb-rec-card__author {
  font-family: var(--font-body, Helvetica, sans-serif);
  font-size: 0.78rem;
  color: var(--bs-secondary-color, #595959);
}

.cb-rec-card__arrow {
  color: var(--bs-primary, #b21f24);
  font-size: 0.95rem;
  opacity: 0.55;
  transform: translateX(-2px);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .cb-rec-card,
  .cb-rec-card::before,
  .cb-rec-card__title,
  .cb-rec-card__arrow {
    transition: none !important;
  }
}
/* Games Widget — Sidebar CTA cards for daily games
   Works on any page without loading games.css.
   Light + dark mode via Bootstrap --bs-* variables.
*/
.arcade-widget__card {
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--bs-primary) 18%, var(--bs-border-color));
  overflow: hidden;
  background: radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--bs-primary) 8%, transparent) 1px, transparent 1px) 0 0/16px 16px, linear-gradient(160deg, color-mix(in srgb, var(--bs-primary) 6%, var(--bs-body-bg)) 0%, var(--bs-body-bg) 50%, color-mix(in srgb, var(--bs-primary) 4%, var(--bs-body-bg)) 100%);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.arcade-widget__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--bs-primary) 30%, var(--bs-border-color));
}
.arcade-widget__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bs-primary) 0%, color-mix(in srgb, var(--bs-primary) 60%, var(--bs-border-color)) 100%);
  z-index: 1;
}

.arcade-widget__vip {
  top: 20px;
  right: 1rem;
  z-index: 2;
  border-radius: 5px;
}

.arcade-widget__body {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.arcade-widget__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.arcade-widget__icon {
  width: 46px;
  height: 46px;
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-emphasis-color);
  background: linear-gradient(145deg, var(--bs-tertiary-bg) 0%, color-mix(in srgb, var(--bs-secondary-bg) 60%, var(--bs-body-bg)) 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.arcade-widget__icon svg {
  width: 28px;
  height: 28px;
}

.arcade-widget__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bs-primary);
  margin: 0;
}

.arcade-widget__title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
}

.arcade-widget__desc {
  margin: 0;
  color: var(--bs-secondary-color);
  font-size: 0.88rem;
  line-height: 1.45;
}

.arcade-widget__actions {
  margin-top: 0.25rem;
}

.arcade-widget__btn {
  font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--bs-primary) 50%, var(--bs-border-color));
  letter-spacing: 0.01em;
  padding-inline: 1rem;
  border-radius: 0.5rem;
  color: #fff;
  background: linear-gradient(180deg, var(--bs-primary) 0%, color-mix(in srgb, var(--bs-primary) 80%, #000) 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background 150ms ease, box-shadow 150ms ease;
}
.arcade-widget__btn:hover {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bs-primary) 90%, #fff) 0%, var(--bs-primary) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #fff;
}
.arcade-widget__btn:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.thm-tags {
  margin-bottom: 20px;
  font-family: var(--font-body, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  font-size: 1rem;
  line-height: 1.5;
}
.thm-tags .thm-tags-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--article-tags-title-color, var(--accent-color, var(--primary-color)));
}
.thm-tags .thm-tags-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: normal !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-body-color);
  text-decoration: none !important;
  transition: color 0.15s ease;
}
.thm-tags .thm-tags-link:hover {
  color: var(--accent-color, var(--primary-color));
}
.thm-tags .thm-tags-sep {
  color: var(--bs-border-color, #e2dfdb);
  font-weight: 300;
  user-select: none;
}

[data-bs-theme=dark] .thm-tags-link {
  color: #d4d0cb;
}
[data-bs-theme=dark] .thm-tags-link:hover {
  color: #ffffff;
}
[data-bs-theme=dark] .thm-tags-sep {
  color: #333;
}

.x-follow-btn {
  --x-bg: #000;
  --x-fg: #fff;
  --x-border: #000;
  --x-hover-bg: #272c30;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 28px;
  padding: 0 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--x-fg);
  background-color: var(--x-bg);
  border: 1px solid var(--x-border);
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (max-width: 575.98px) {
  .x-follow-btn {
    height: 24px;
  }
}
.x-follow-btn:hover,
.x-follow-btn:focus-visible {
  background-color: var(--x-hover-bg);
  color: var(--x-fg);
  text-decoration: none;
}

.x-follow-btn:focus-visible {
  outline: 2px solid var(--bs-primary, #b21f24);
  outline-offset: 2px;
}

.x-follow-btn__icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.x-follow-btn__label {
  display: inline-block;
}

[data-bs-theme=dark] .x-follow-btn {
  --x-bg: #fff;
  --x-fg: #000;
  --x-border: #fff;
  --x-hover-bg: #d7dbdc;
}

.dateline-pager {
  --dlp-accent: var(--bs-primary);
  --dlp-accent-rgb: var(--bs-primary-rgb);
  --dlp-control-fg: var(--bs-body-color);
  --dlp-control-bg: transparent;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(0.5rem, 3vw, 2rem);
  padding: 0.5rem clamp(0.5rem, 2vw, 1.25rem);
}

.dateline-pager__control {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  color: var(--dlp-control-fg);
  text-decoration: none;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background: var(--dlp-control-bg);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.dateline-pager__control--newer {
  justify-self: start;
}
.dateline-pager__control--older {
  justify-self: end;
  text-align: right;
}
.dateline-pager__control:hover, .dateline-pager__control:focus-visible {
  color: var(--dlp-accent);
  border-color: rgba(var(--dlp-accent-rgb), 0.4);
  background: rgba(var(--dlp-accent-rgb), 0.06);
  text-decoration: none;
}
.dateline-pager__control:focus-visible {
  outline: 2px solid rgba(var(--dlp-accent-rgb), 0.5);
  outline-offset: 2px;
}
.dateline-pager__control:active {
  transform: translateY(1px);
}
.dateline-pager__control:hover .dateline-pager__chevron.bi-chevron-left, .dateline-pager__control:focus-visible .dateline-pager__chevron.bi-chevron-left {
  transform: translateX(-3px);
}
.dateline-pager__control:hover .dateline-pager__chevron.bi-chevron-right, .dateline-pager__control:focus-visible .dateline-pager__chevron.bi-chevron-right {
  transform: translateX(3px);
}
.dateline-pager__control.is-disabled {
  color: var(--bs-secondary-color);
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.dateline-pager__chevron {
  font-size: 0.875rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.dateline-pager__control-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.dateline-pager__control-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dateline-pager__control-date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bs-secondary-color);
}

.dateline-pager__range {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3125rem;
}
.dateline-pager__range::after {
  content: "";
  width: 2.5rem;
  height: 2px;
  border-radius: 2px;
  background: var(--dlp-accent);
}

.dateline-pager__dates {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  letter-spacing: 0.01em;
  color: var(--bs-emphasis-color);
  white-space: nowrap;
}

.dateline-pager__sep {
  font-weight: 400;
  color: var(--dlp-accent);
}

@media (max-width: 575.98px) {
  .dateline-pager {
    gap: 0.25rem;
    padding: 0.5rem;
  }
  .dateline-pager__control {
    padding: 0.5rem;
  }
  .dateline-pager__control-date {
    display: none;
  }
  .dateline-pager__dates {
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
  }
  .dateline-pager__sep {
    display: none;
  }
}
[data-bs-theme=dark] .dateline-pager__control:hover, [data-bs-theme=dark] .dateline-pager__control:focus-visible {
  background: rgba(var(--bs-primary-rgb), 0.14);
}

:root {
  --acct-hero-bg: linear-gradient(155deg, #0a0a0a 0%, #141414 35%, #1c0f10 70%, #231315 100%);
  --acct-font-bold: var(--font-bolder, SourceSansProBold, Helvetica, sans-serif);
  --acct-font-body: var(--font-body, Helvetica, sans-serif);
  --acct-nav-bg: #fafafa;
  --acct-nav-border: #e9ecef;
  --acct-nav-link: #6c757d;
  --acct-nav-link-hover: #212529;
  --acct-nav-link-active: var(--bs-primary);
  --acct-benefit-border: rgba(0, 0, 0, 0.1);
  --acct-benefit-bg: rgba(255, 255, 255, 0.84);
  --acct-benefit-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  --acct-benefit-title: #212529;
  --acct-benefit-text: rgba(0, 0, 0, 0.6);
  --acct-benefit-kicker-border: rgba(var(--bs-primary-rgb), 0.18);
  --acct-benefit-kicker-bg: rgba(255, 255, 255, 0.5);
  --acct-benefit-gradient-platinum: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(247, 241, 230, 0.95) 100%
  );
  --acct-benefit-gradient-messages: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(250, 238, 239, 0.94) 100%
  );
  --acct-benefit-gradient-tv: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(237, 246, 247, 0.95) 100%);
  --acct-benefit-gradient-gift: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 243, 235, 0.95) 100%);
  --acct-benefit-gradient-discount: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(240, 245, 240, 0.95) 100%
  );
  --acct-promo-bg: rgba(0, 0, 0, 0.03);
  --acct-promo-border: rgba(0, 0, 0, 0.12);
  --acct-promo-color: #495057;
  --acct-toast-bg: #141414;
  --acct-toast-color: #fff;
  --acct-toast-icon: #4ade80;
  --acct-upgrade-bg: linear-gradient(135deg, #fef8f8 0%, #fff 60%, #f8f5f0 100%);
  --acct-upgrade-border: rgba(var(--bs-primary-rgb), 0.15);
  --acct-upgrade-text: #6c757d;
}

[data-bs-theme=dark] {
  --acct-nav-bg: #111;
  --acct-nav-border: #222;
  --acct-nav-link-hover: #e9ecef;
  --acct-nav-link-active: var(--brand-primary-light, #ea6b6e);
  --acct-benefit-border: rgba(255, 255, 255, 0.1);
  --acct-benefit-bg: rgba(17, 17, 17, 0.72);
  --acct-benefit-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --acct-benefit-title: #f5f5f5;
  --acct-benefit-text: rgba(255, 255, 255, 0.6);
  --acct-benefit-kicker-border: color-mix(in srgb, var(--brand-primary-light, #ea6b6e) 25%, transparent);
  --acct-benefit-kicker-bg: rgba(255, 255, 255, 0.04);
  --acct-benefit-gradient-platinum: linear-gradient(155deg, rgba(35, 35, 35, 0.96) 0%, rgba(59, 48, 34, 0.92) 100%);
  --acct-benefit-gradient-messages: linear-gradient(155deg, rgba(30, 30, 30, 0.96) 0%, rgba(59, 30, 32, 0.92) 100%);
  --acct-benefit-gradient-tv: linear-gradient(155deg, rgba(27, 27, 27, 0.96) 0%, rgba(28, 47, 49, 0.92) 100%);
  --acct-benefit-gradient-gift: linear-gradient(155deg, rgba(32, 32, 32, 0.96) 0%, rgba(55, 48, 36, 0.92) 100%);
  --acct-benefit-gradient-discount: linear-gradient(155deg, rgba(28, 28, 28, 0.96) 0%, rgba(34, 48, 38, 0.92) 100%);
  --acct-promo-bg: rgba(255, 255, 255, 0.04);
  --acct-promo-border: rgba(255, 255, 255, 0.12);
  --acct-promo-color: #e9ecef;
  --acct-toast-bg: #f5f5f5;
  --acct-toast-color: #141414;
  --acct-toast-icon: #16a34a;
  --acct-upgrade-bg: linear-gradient(135deg, rgba(44, 29, 30, 0.5) 0%, #1a1a1a 60%, rgba(34, 30, 24, 0.5) 100%);
  --acct-upgrade-border: rgba(255, 255, 255, 0.08);
  --acct-upgrade-text: #9ca3af;
}

.acct-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  pointer-events: none;
  z-index: 1;
}

.acct-hero {
  position: relative;
  overflow: hidden;
  background: var(--acct-hero-bg);
  border-bottom: 2px solid var(--bs-primary);
  padding: 2.75rem 0 2.25rem;
  margin-bottom: 0;
}
.acct-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  animation: acctGlowPulse 8s ease-in-out infinite;
}
.acct-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.acct-hero > * {
  position: relative;
  z-index: 3;
}
.acct-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 767.98px) {
  .acct-hero__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.acct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--bs-primary);
  font-family: var(--acct-font-bold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.875rem;
}
.acct-hero__title {
  font-family: var(--acct-font-bold);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.625rem;
}
.acct-hero__sub {
  font-family: var(--acct-font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  max-width: 30rem;
  margin: 0;
}

@keyframes acctGlowPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.08);
  }
}
.acct-status-card {
  min-width: 220px;
  max-width: 260px;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 767.98px) {
  .acct-status-card {
    max-width: 100%;
  }
}
.acct-status-card__label {
  font-family: var(--acct-font-bold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}
.acct-status-card__tier {
  font-family: var(--acct-font-bold);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.acct-status-card__tier img {
  height: 14px;
  flex-shrink: 0;
}
.acct-status-card__bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.acct-status-card__bar-fill {
  height: 100%;
  width: var(--acct-bar, 0%);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bs-primary) 0%, var(--brand-primary-bright, #e84c4f) 100%);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.acct-status-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}
.acct-status-card__meta a {
  color: var(--brand-primary-lighter, #ea8a8d);
  text-decoration: none;
  font-weight: 500;
}
.acct-status-card__meta a:hover {
  color: #fff;
  text-decoration: underline;
}
.acct-status-card__meta-perks {
  color: var(--brand-primary-lighter, #ea8a8d);
}

.acct-nav-strip {
  background: var(--acct-nav-bg);
  border-bottom: 1px solid var(--acct-nav-border);
  padding: 0;
  position: sticky;
  top: 65px;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}
.acct-nav-strip.is-stuck {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
[data-bs-theme=dark] .acct-nav-strip.is-stuck {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.acct-nav-strip__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.acct-nav-strip__inner::-webkit-scrollbar {
  display: none;
}

.acct-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  font-family: var(--acct-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--acct-nav-link);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.acct-nav-link:hover {
  color: var(--acct-nav-link-hover);
  text-decoration: none;
}
.acct-nav-link.is-active {
  color: var(--acct-nav-link-active);
  border-bottom-color: var(--acct-nav-link-active);
  font-weight: 600;
}
.acct-nav-link i {
  font-size: 15px;
  opacity: 0.55;
  flex-shrink: 0;
  line-height: 1;
}
.acct-nav-link:hover i, .acct-nav-link.is-active i {
  opacity: 1;
}

.acct-section-icon {
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.accordion-button:not(.collapsed) .acct-section-icon {
  opacity: 0.9;
}

.acct-section-label {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 0.6rem;
}
.acct-section-label__title {
  font-size: 1.0625rem;
  line-height: 1.35;
}
.acct-section-label__title img {
  margin-bottom: 1px;
}
.acct-section-label__desc {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.45;
  line-height: 1.25;
  margin-top: 2px;
}

.acct-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.875rem;
}

.acct-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem;
  border: 1px solid var(--acct-benefit-border);
  border-radius: 0.85rem;
  background: var(--acct-benefit-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--acct-benefit-shadow-inset);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.acct-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--bs-primary-rgb), 0.25);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}
[data-bs-theme=dark] .acct-benefit:hover {
  border-color: color-mix(in srgb, var(--brand-primary-light, #ea6b6e) 35%, transparent);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}
.acct-benefit::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--bs-primary) 0%, rgba(var(--bs-primary-rgb), 0.15) 100%);
}
.acct-benefit--platinum {
  background-image: var(--acct-benefit-gradient-platinum);
}
.acct-benefit--messages {
  background-image: var(--acct-benefit-gradient-messages);
}
.acct-benefit--tv {
  background-image: var(--acct-benefit-gradient-tv);
}
.acct-benefit--gift {
  background-image: var(--acct-benefit-gradient-gift);
}
.acct-benefit--discount {
  background-image: var(--acct-benefit-gradient-discount);
}
.acct-benefit__logo {
  display: flex;
  align-items: center;
  min-height: 1.4rem;
}
.acct-benefit__logo img {
  height: 1.1rem;
  display: block;
}
.acct-benefit__logo--platinum img {
  height: 1.35rem;
}
.acct-benefit__logo i {
  font-size: 18px;
  color: var(--bs-primary);
  line-height: 1;
}
.acct-benefit__kicker {
  display: inline-block;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--acct-benefit-kicker-border);
  font-family: var(--acct-font-bold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-primary);
  background: var(--acct-benefit-kicker-bg);
}
[data-bs-theme=dark] .acct-benefit__kicker {
  color: var(--brand-primary-lighter, #ea8a8d);
}
.acct-benefit__title {
  font-family: var(--acct-font-bold);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--acct-benefit-title);
  margin: 0;
}
.acct-benefit__text {
  font-size: 0.9rem;
  color: var(--acct-benefit-text);
  line-height: 1.55;
  flex: 1;
}
.acct-benefit__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.acct-benefit__text a:hover {
  color: var(--bs-primary);
}
.acct-benefit__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.acct-promo {
  display: flex;
  gap: 0;
  width: 100%;
}
.acct-promo input {
  flex: 1;
  min-width: 0;
  border-radius: 5px 0 0 5px;
  font-family: "Courier New", Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  background: var(--acct-promo-bg);
  border: 1px solid var(--acct-promo-border);
  border-right: 0;
  padding: 0.375rem 0.6rem;
  color: var(--acct-promo-color);
}
.acct-promo button {
  border-radius: 0 5px 5px 0;
  white-space: nowrap;
  font-size: 0.72rem;
  padding: 0 0.6rem;
}

.acct-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  background: var(--acct-toast-bg);
  color: var(--acct-toast-color);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
[data-bs-theme=dark] .acct-toast {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
}
.acct-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.acct-toast i {
  font-size: 15px;
  color: var(--acct-toast-icon);
  line-height: 1;
}

.acct-subscription-wrap {
  min-height: 580px;
}

.acct-upgrade-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--acct-upgrade-border);
  border-radius: 0.75rem;
  background: var(--acct-upgrade-bg);
  margin-bottom: 1.5rem;
}
.acct-upgrade-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--brand-primary-mid, #d42d32) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.acct-upgrade-banner__icon i {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
.acct-upgrade-banner__body {
  flex: 1;
  min-width: 0;
}
.acct-upgrade-banner__title {
  font-family: var(--acct-font-bold);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.125rem;
}
.acct-upgrade-banner__text {
  font-size: 0.9rem;
  color: var(--acct-upgrade-text);
  line-height: 1.5;
}
.acct-upgrade-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

.acct-locked {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
}
.acct-locked__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--brand-primary-mid, #d42d32) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.75rem 1.75rem rgba(var(--bs-primary-rgb), 0.25);
}
.acct-locked__icon i {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
.acct-locked__title {
  font-family: var(--acct-font-bold);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.acct-locked__text {
  font-size: 0.975rem;
  color: var(--acct-upgrade-text);
  line-height: 1.6;
  max-width: 30rem;
  margin: 0 auto 1.5rem;
}
.acct-locked__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.acct-reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: acctReveal 0.5s ease forwards;
}
.acct-reveal--d1 {
  animation-delay: 0.04s;
}
.acct-reveal--d2 {
  animation-delay: 0.08s;
}
.acct-reveal--d3 {
  animation-delay: 0.12s;
}
.acct-reveal--d4 {
  animation-delay: 0.16s;
}
.acct-reveal--d5 {
  animation-delay: 0.2s;
}

@keyframes acctReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.acct-main {
  padding-top: 1.75rem;
  padding-bottom: 3rem;
}

.accordion-thm .accordion-item {
  scroll-margin-top: calc(65px + 3.25rem);
}

.swamp-404 {
  --swamp-accent: var(--bs-primary, #b21f24);
  margin-top: 1rem;
  text-align: center;
}
.swamp-404__header {
  margin-bottom: 1rem;
}
.swamp-404__code {
  display: block;
  color: var(--swamp-accent);
  font-size: clamp(4rem, 17vw, 7.5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.swamp-404__title {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.swamp-404__hero {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #1f5722;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}
.swamp-404__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 42%;
}
.swamp-404__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4rem 1.25rem 1.25rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0) 100%);
}
.swamp-404__headline {
  margin-bottom: 0.35rem;
  font-size: clamp(1.1rem, 3.6vw, 1.75rem);
  font-weight: 700;
  text-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.7);
}
.swamp-404__sub {
  margin-bottom: 0;
  font-size: clamp(0.875rem, 2.4vw, 1.05rem);
  opacity: 0.92;
  text-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.7);
}
.swamp-404__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}
.swamp-404__cta {
  --swamp-cta: var(--bs-primary, #b21f24);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
  padding: 0.9rem 2.25rem;
  border-radius: 3rem;
  background-color: var(--swamp-cta);
  background-image: linear-gradient(145deg, color-mix(in srgb, var(--swamp-cta) 76%, #fff) 0%, var(--swamp-cta) 45%, color-mix(in srgb, var(--swamp-cta) 76%, #000) 100%);
  box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.35), inset 0 -0.0625rem 0 rgba(0, 0, 0, 0.3), 0 0.5rem 1.25rem rgba(0, 0, 0, 0.38), 0 0 2rem color-mix(in srgb, var(--swamp-cta) 45%, transparent);
  color: #fff;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.swamp-404__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.45) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
}
.swamp-404__cta:hover, .swamp-404__cta:focus-visible {
  color: #fff;
  transform: translateY(-0.1875rem);
  box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.45), inset 0 -0.0625rem 0 rgba(0, 0, 0, 0.3), 0 0.75rem 1.75rem rgba(0, 0, 0, 0.45), 0 0 3rem color-mix(in srgb, var(--swamp-cta) 65%, transparent);
}
.swamp-404__cta:hover::before, .swamp-404__cta:focus-visible::before {
  transform: translateX(130%);
}
.swamp-404__cta:hover .swamp-404__cta-arrow, .swamp-404__cta:focus-visible .swamp-404__cta-arrow {
  transform: translateX(0.3rem);
}
.swamp-404__cta:focus-visible {
  outline: 0.1875rem solid color-mix(in srgb, var(--swamp-cta) 85%, transparent);
  outline-offset: 0.25rem;
}
.swamp-404__cta:active {
  transform: translateY(-0.0625rem);
  box-shadow: inset 0 0.125rem 0.375rem rgba(0, 0, 0, 0.4), 0 0.25rem 0.75rem rgba(0, 0, 0, 0.4);
}
.swamp-404__cta-label, .swamp-404__cta-arrow {
  position: relative;
}
.swamp-404__cta-arrow {
  transition: transform 0.25s ease;
}
@media (max-width: 575.98px) {
  .swamp-404 .swamp-404__overlay {
    padding: 2.5rem 0.75rem 1rem;
  }
  .swamp-404 .swamp-404__cta {
    padding: 0.8rem 1.5rem;
  }
}

[data-bs-theme=dark] .swamp-404 {
  --swamp-accent: color-mix(in srgb, var(--bs-primary, #b21f24) 62%, #fff);
}

@media (prefers-reduced-motion: reduce) {
  .swamp-404__cta,
  .swamp-404__cta::before,
  .swamp-404__cta-arrow {
    transition: none;
  }
  .swamp-404__cta:hover,
  .swamp-404__cta:focus-visible {
    transform: none;
  }
  .swamp-404__cta:hover::before,
  .swamp-404__cta:focus-visible::before {
    transform: translateX(-130%);
  }
}

/*# sourceMappingURL=rcl.css.map */
