.site-logo {
  height: 45px;
  display: block;
  margin: 0 auto;
}

.ptc-logo-section {
  align-items: center;
}

.watch-now-badge {
  height: 35px;
}

.mobile-social-offset {
  margin-top: 60px;
}

.footer-primary-bg {
  background-color: #000;
}

.footer-secondary-bg {
  background-color: #3b1c53;
}

.page-readable {
  background: #f8fbff;
  color: #1a2340;
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.page-readable p,
.page-readable li,
.page-readable span,
.page-readable div,
.page-readable label,
.page-readable h1,
.page-readable h2,
.page-readable h3,
.page-readable h4 {
  color: #1a2340;
}

.page-readable a {
  color: #0b3b8c;
}

.important-links-list {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.important-links-list li {
  margin-bottom: 2px;
}

.song-col-padding {
  padding: 15px;
}

.search-thumb {
  width: 80px;
  height: 60px;
}

.iw-view-all-list-area {
  text-align: center;
}

.iw-search-btn-action {
  background: #9a0909;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 0 15px;
  margin-top: 10px;
}

:root {
  --ux-reveal-duration: 580ms;
  --ux-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ux-focus-color: #ffcb00;
}

html {
  scroll-behavior: smooth;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity var(--ux-reveal-duration) var(--ux-reveal-ease),
    transform var(--ux-reveal-duration) var(--ux-reveal-ease);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-left {
  transform: translate3d(-20px, 0, 0);
}

.reveal-on-scroll.reveal-right {
  transform: translate3d(20px, 0, 0);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-animate {
  position: relative;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.995);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.section-animate::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(75% 55% at 50% 0%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 650ms ease;
}

.section-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.section-animate.is-visible::before {
  opacity: 1;
  animation: sectionGlowPulse 2.8s ease-out 1;
}

@keyframes sectionGlowPulse {
  0% { opacity: 0; }
  35% { opacity: 0.38; }
  100% { opacity: 0; }
}

@media (max-width: 767.98px) {
  .section-animate {
    transform: translate3d(0, 12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-animate,
  .section-animate::before {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.platform-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.platform-card .platform-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.platform-card .platform-number {
  font-size: 0.78rem;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
}

.channel-listing-shell {
  overflow: hidden;
  padding: 16px 8px;
}

.channel-listing-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: thin;
}

.channel-listing-card {
  min-width: 210px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e3e6f0;
  box-shadow: 0 2px 8px rgba(9, 22, 51, 0.08);
  padding: 10px 12px;
  display: block;
  text-decoration: none;
}

.channel-listing-head {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b2d5b;
  border-bottom: 1px solid #eceff7;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.channel-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.channel-listing-logo {
  width: 78px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.channel-line {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.25;
  color: #000;
  text-align: center;
}

.channel-line .label {
  font-weight: 700;
}

.channel-line .value {
  font-weight: 700;
  color: #000;
}

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

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #3b1c53;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, background-color 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #9a0909;
}

/* Slider alignment fixes for homepage test layout */
#short-videos-section.short-videos-wrap {
  box-sizing: border-box;
}

#visual-stories-section.visual-stories-block {
  width: 100%;
  box-sizing: border-box;
}

#short-videos-section .short-videos-shell,
#visual-stories-section .screen-section-head,
#visual-stories-section .visual-track {
  width: 100%;
}

#short-videos-section .short-nav,
#visual-stories-section .sec-nav {
  top: 50%;
  transform: translateY(-50%);
}
#short-videos-section .short-nav-prev,
#visual-stories-section .sec-prev {
  left: 0.35rem;
}

#short-videos-section .short-nav-next,
#visual-stories-section .sec-next {
  right: 0.35rem;
}

#visual-stories-section.visual-stories-block {
  padding: 0rem 15px 1.12rem !important;
}

#visual-stories-section .visual-track {
  gap: 0.75rem; /* same as short-track */
}

#visual-stories-section .visual-card {
  flex: 0 0 clamp(220px, 16.5vw, 270px);
}

@media (max-width: 767.98px) {
  #short-videos-section .short-card,
  #visual-stories-section .visual-card {
    flex-basis: min(78vw, 280px);
  }
}

/* Force story titles to stay visible on dark background */
main h2.fs16,
main h2.fs16 a,
main #short-videos-section .short-caption,
main #visual-stories-section .visual-card h3 {
  color: #fff !important;
}

main h2.fs16 a:hover,
main #short-videos-section .short-card:hover .short-caption,
main #visual-stories-section .visual-card:hover h3 {
  color: #ffee00 !important;
}

/* Headings + line + view all */
#short-videos-section .short-videos-title,
#visual-stories-section #visual-stories-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-style: italic;
  margin: 10px 0 5px 0;
  overflow: hidden;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
}

#short-videos-section .short-videos-title {
  color: #33cccc;
}

#visual-stories-section #visual-stories-title {
  color: #f2c94c;
}

#short-videos-section .short-videos-title::after {
  content: "";
  display: inline-block;
  height: 0.6em;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
  border-top: 1px solid #33cccc;
}

.short-videos-shell {
  position: relative;
  border-radius: 0;
  border: 0;
  background: none !important;
  padding: 0 !important;
}
.visual-stories-block {
  position: relative;
  border-radius: 0;
  border: 0;
  background: none !important;
  padding: 0 !important;
}

#visual-stories-section #visual-stories-title::after {
  content: "";
  display: inline-block;
  height: 0.6em;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
  border-top: 1px solid #f2c94c;
}

#short-videos-title::after,
#visual-stories-title::after {
  content: "";
  display: inline-block;
  height: 0.6em;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
}

#short-videos-section .viewall,
#visual-stories-section .viewall {
  float: none;
  font-size: 0.938rem;
  padding-top: 6px;
}

#short-videos-section .viewall a {
  color: #33cccc !important;
}

#visual-stories-section .viewall a {
  color: #f2c94c !important;
}

#short-videos-title::after { border-top: 1px solid #33cccc; }
#visual-stories-title::after { border-top: 1px solid #f2c94c; }

#brands-section h2.polly-spl {
  text-align: left !important;
}
/* Match P-town / Top Shows heading line pattern */
#short-videos-section .short-header-row,
#visual-stories-section .screen-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#short-videos-title,
#visual-stories-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.875rem;
  font-weight: 700;
  font-style: italic;
  margin: 10px 0 5px 0;
  overflow: hidden;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
}

#short-videos-title { color: #33cccc; }
#visual-stories-title { color: #f2c94c; }

#short-videos-title > span::after,
#visual-stories-title > span::after {
  content: "";
  display: inline-block;
  height: 0.6em;
  vertical-align: bottom;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
}

#short-videos-title > span::after { border-top: 1px solid #33cccc; }
#visual-stories-title > span::after { border-top: 1px solid #f2c94c; }

#short-videos-section .viewall,
#visual-stories-section .viewall {
  float: none;
  white-space: nowrap;
  font-size: 0.938rem;
  padding-top: 6px;
}
.screen-section-head h2::after {
    content: "";
    display: block;
    width: 56%;
    max-width: 220px;
    height: 3px;
    background: none !important;
    border-radius: none !important;
    margin-top: none !important;
}

.news-feature-wrap #topFeatureDesc {
  display: none !important;
}

.news-feature-wrap .feature-article-body,
.news-feature-wrap .feature-article-title,
.news-feature-wrap .feature-article-title a {
  text-align: left !important;
}

.news-feature-wrap .feature-article-title {
  margin: 0 !important;
  line-height: 1.08 !important;
}

.news-feature-wrap .feature-meta {
  justify-content: flex-start !important;
}

.news-feature-wrap .story-list {
  gap: 0.9rem !important;
}

.news-feature-wrap .story-item {
  align-items: flex-start !important;
}

.news-feature-wrap .story-tag {
  color: #fdec00 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.25rem !important;
  line-height: 1.2 !important;
}

.news-feature-wrap .story-item h4 {
  color: #ffffff !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  margin: 0 !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
}
/* Hide title + number in Available On cards */
.platform-card .platform-name,
.platform-card .platform-number {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll,
  .platform-card,
  .back-to-top {
    transition: none !important;
    animation: none !important;
  }
}
