/* Podcast spotlight — Elementor shortcode block */

.gw-podcast-spotlight {
  --gw-spotlight-bg: #2c3136;
  --gw-spotlight-gold: #c5a043;
  --gw-spotlight-text: #ffffff;
  --gw-spotlight-muted: rgba(255, 255, 255, 0.62);
  --gw-spotlight-border: rgba(255, 255, 255, 0.1);
  --gw-spotlight-card: rgba(255, 255, 255, 0.06);
  --gw-spotlight-card-active: rgba(255, 255, 255, 0.12);
  background: var(--gw-spotlight-bg);
  color: var(--gw-spotlight-text);
  border-radius: 0;
  padding: 56px 48px;
}

.gw-podcast-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}

.gw-podcast-spotlight__label {
  margin: 0 0 20px;
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-spotlight-gold);
}

.gw-podcast-spotlight__show {
  margin: 0 0 12px;
  font-family: var(--e-global-typography-primary-font-family, "Test Tiempos Headline"), Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gw-podcast-spotlight__show a {
  color: inherit;
  text-decoration: none;
}

.gw-podcast-spotlight__show a:hover {
  color: var(--gw-spotlight-gold);
}

.gw-podcast-spotlight__title {
  margin: 0 0 16px;
  font-family: var(--e-global-typography-primary-font-family, "Test Tiempos Headline"), Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.25;
}

.gw-podcast-spotlight__title a {
  color: inherit;
  text-decoration: none;
}

.gw-podcast-spotlight__title a:hover {
  color: var(--gw-spotlight-gold);
}

.gw-podcast-spotlight__excerpt {
  margin: 0 0 28px;
  max-width: 52ch;
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gw-spotlight-muted);
}

.gw-podcast-spotlight__audio {
  display: none;
}

.gw-podcast-spotlight__progress-wrap {
  margin-bottom: 18px;
}

.gw-podcast-spotlight__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
}

.gw-podcast-spotlight__progress-bar {
  width: 0;
  height: 100%;
  background: var(--gw-spotlight-gold);
  border-radius: inherit;
  transition: width 0.1s linear;
}

.gw-podcast-spotlight__times {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), sans-serif;
  font-size: 12px;
  color: var(--gw-spotlight-muted);
}

.gw-podcast-spotlight__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.gw-podcast-spotlight__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gw-spotlight-text);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.gw-podcast-spotlight__btn--skip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.gw-podcast-spotlight__btn--skip:hover {
  border-color: var(--gw-spotlight-gold);
  color: var(--gw-spotlight-gold);
}

.gw-podcast-spotlight__btn--play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gw-spotlight-gold);
  color: #1a1d21;
  display: grid;
  place-items: center;
}

.gw-podcast-spotlight__btn--play:hover {
  filter: brightness(1.05);
}

.gw-podcast-spotlight__icon {
  display: block;
  width: 0;
  height: 0;
}

.gw-podcast-spotlight__icon--play {
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.gw-podcast-spotlight__icon--pause {
  display: none;
  width: 14px;
  height: 16px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
  box-sizing: border-box;
}

.gw-podcast-spotlight.is-playing .gw-podcast-spotlight__icon--play {
  display: none;
}

.gw-podcast-spotlight.is-playing .gw-podcast-spotlight__icon--pause {
  display: block;
}

.gw-podcast-spotlight__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  color: var(--gw-spotlight-text);
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.gw-podcast-spotlight__view-all:hover {
  background: #fff;
  color: #1a1d21;
}

.gw-podcast-spotlight__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gw-podcast-spotlight__list li + li {
  border-top: 1px solid var(--gw-spotlight-border);
}

.gw-podcast-spotlight__episode {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gw-podcast-spotlight__episode:hover,
.gw-podcast-spotlight__episode.is-active {
  background: var(--gw-spotlight-card-active);
}

.gw-podcast-spotlight__episode:not(.is-active):hover {
  background: #fff;
}

.gw-podcast-spotlight__thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.gw-podcast-spotlight__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gw-podcast-spotlight__thumb--empty {
  border: 1px solid var(--gw-spotlight-border);
}

.gw-podcast-spotlight__episode-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gw-podcast-spotlight__episode-title {
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--gw-spotlight-text);
}

.gw-podcast-spotlight__episode-meta {
  font-family: var(--e-global-typography-text-font-family, "Montserrat"), sans-serif;
  font-size: 12px;
  color: var(--gw-spotlight-muted);
}


[type=button]:hover, [type=submit]:hover, button:hover {
    background-color: #ffffff;
    color: #000000 ;
    text-decoration: none;
}

[type=button]:hover, [type=submit]:hover, button:hover span{
    color: #000000;
}


@media (max-width: 900px) {
  .gw-podcast-spotlight {
    padding: 40px 24px;
  }

  .gw-podcast-spotlight__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}