#podcasts-category-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;
}

#podcasts-category-wrapper .podcasts-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px;
}
.podcasts-category-switcher{
  display:flex;
  justify-content:center;
  gap:0;
  margin: 0 auto 40px;
  border:1px solid #3580CB;
  border-radius:6px;
  overflow:hidden;
  width: fit-content;
}

.podcasts-category-tab{
  appearance:none;
  background:#fff;
  border:0;
  padding:16px 30px;
  font-size: 16px;
  font-weight:700;
  cursor:pointer;
  color:#3580CB;
}
.podcasts-category-tab.is-active{
  background:#3580CB;
  color:#fff;
}



#podcasts-category-wrapper .single-podcast {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  position: relative;
  border-radius: 20px;
  border: 3px solid #FBFBFB;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15), 0px 0px 20px rgba(0, 0, 0, 0.15);
  flex: 0 1 calc(33% - 20px);
  overflow: hidden;
}

#podcasts-category-wrapper .single-podcast:hover {
  box-shadow: rgba(2, 129, 209, 0.3) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 32px;
}
#podcasts-category-wrapper .podcasts-category-title {
  font-weight: bold;
  color: #001b4d;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  padding-bottom: 40px;
  margin-top: 20px;
}

#podcasts-category-wrapper .single-podcast-photo {
  width: 100%;
  background: linear-gradient(135deg, #3580CB -100%, rgba(0, 0, 0, 0.8) 100%);
}

#podcasts-category-wrapper .single-podcast-photo img {
  width: 100%;
  min-height: 250px;
  border-radius: 20px;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  margin: 0 !important;
  opacity: 0.7;
}
#podcasts-category-wrapper .single-podcast-info {
  position: absolute;
    bottom: 0;
    padding: 20px;
    border-top: 3px solid #aeccea;
    width: 100%;
    background: linear-gradient(180deg, rgba(53, 128, 203, .4) 0%, rgba(26, 64, 101, .9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 5px 5px 4px #FFFFFF14;
    border-radius: 0 0 17px 17px;
    text-align: center;
}


#podcasts-category-wrapper .single-podcast-title {
  font-weight: 600;
  color: #fff;
  text-align: center;
  max-width: 310px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 44px;
  font-size: 22px;
  line-height: 22px;
  word-break: break-word;
}
#podcasts-category-wrapper .single-podcast-description {
  font-weight: 500;
  color: #fff;
  text-align: center;
  max-width: 310px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 32px;
  font-size: 16px;
  line-height: 16px;
  word-break: break-word;
}

#podcasts-category-wrapper .is-hidden { display: none !important; }

@media (max-width: 768px) {
  #podcasts-category-wrapper .podcasts-wrapper {
    gap: 20px
  }
  #podcasts-category-wrapper {
    padding: 0 20px 30px 20px;
  }
  #podcasts-category-wrapper .single-podcast {
    flex: 0 1 calc(50% - 15px);
  }
  #podcasts-category-wrapper .podcasts-category-title {
    font-size: 28px;
    line-height: 100%;
    padding-bottom: 26px;
  }
  #podcasts-category-wrapper .podcasts-category-switcher{
    margin: 0 auto 26px;
  }
  #podcasts-category-wrapper .podcasts-category-tab{
    padding:14px 24px;
  }
  #podcasts-category-wrapper .single-podcast-title {
    height: 40px;
    font-size: 20px;
    line-height: 20px;
  }
  #podcasts-category-wrapper .single-podcast-info {
    min-height: 100px;
  }
  #podcasts-category-wrapper .single-podcast-description {
    height: 30px;
    font-size: 14px;
    line-height: 15px;
  }
}

@media (max-width: 425px) {
  #podcasts-category-wrapper .single-podcast {
    flex: 0 1 100%;
  }

}


/* Explicit states prevent GeneratePress button/link colors from leaking in. */
:root .podcasts-category-switcher .podcasts-category-tab { text-decoration: none; line-height: 1.4; border-radius: 0; }
:root .podcasts-category-switcher .podcasts-category-tab:hover,
:root .podcasts-category-switcher .podcasts-category-tab:focus,
:root .podcasts-category-switcher .podcasts-category-tab:active { background: #e8f0f7; color: #3580cb; }
:root .podcasts-category-switcher .podcasts-category-tab.is-active { background: #3580cb; color: #fff; }
:root .podcasts-category-switcher .podcasts-category-tab:focus-visible { outline: 2px solid #001b4d; outline-offset: -4px; }
.tamc-podcasts, .tamc-podcasts * { box-sizing: border-box; }
.tamc-podcasts { background: #fff; padding: 30px 20px 50px; font-family: var(--tamc-font-text); }
.tamc-podcasts__inner { max-width: 1200px; margin-inline: auto; }
#podcasts-category-wrapper [hidden] { display: none !important; }
#podcasts-category-wrapper .single-podcast > a { display: block; text-decoration: none; }
#podcasts-category-wrapper .single-podcast-photo img { display: block; height: auto; }
#podcasts-category-wrapper .single-podcast-info > div { margin-inline: auto; }
#podcasts-category-wrapper .single-podcast { transition: box-shadow .3s ease; }
.podcasts-empty { text-align: center; }
@media (prefers-reduced-motion: reduce) { #podcasts-category-wrapper .single-podcast { transition: none; } }