/**
 * Podcast List Block Styles.
 *
 * @package hopeinfocus2025
 */
.podcast-list__section-title {
  font-weight: 700;
  color: #3e78bc;
  margin: 0 0 2rem 0;
  text-align: center;
}
.podcast-list__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .podcast-list__header {
    flex-direction: row;
  }
}
.podcast-list__search {
  width: 100%;
  max-width: 400px;
}
.podcast-list__search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.podcast-list__search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.podcast-list__search-input:focus {
  border-color: #2563EB;
}
.podcast-list__search-input::placeholder {
  color: #94A3B8;
}
.podcast-list__search-submit {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748B;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.podcast-list__search-submit:hover, .podcast-list__search-submit:focus {
  color: #2563EB;
}
.podcast-list__search-submit svg {
  width: 20px;
  height: 20px;
}
.podcast-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  min-height: 200px;
}
@media only screen and (min-width: 768px) {
  .podcast-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media only screen and (min-width: 1400px) {
  .podcast-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .podcast-list__grid {
    gap: 72px 84px;
  }
}
.podcast-list__grid--loading {
  opacity: 0.5;
  pointer-events: none;
}
.podcast-list__card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.podcast-list__card:hover {
  transform: translateY(-4px);
}
.podcast-list__card-image {
  aspect-ratio: 514/340;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.podcast-list__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-list__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 30px;
}
.podcast-list__card-title {
  color: #3e78bc;
  margin: 0 0 1rem 0;
  font-weight: 700;
}
.podcast-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .podcast-list__meta {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .podcast-list__meta {
    font-size: 22px;
  }
}
.podcast-list__date {
  color: #3e78bc;
}
.podcast-list__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
.podcast-list__excerpt p {
  margin: 0 0 1rem 0;
  font-weight: 400;
}
.podcast-list__excerpt p:last-child {
  margin-bottom: 0;
}
.podcast-list__footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 30px;
}
.podcast-list__categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.podcast-list__category {
  display: inline-block;
  color: #747474;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .podcast-list__category {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .podcast-list__category {
    font-size: 22px;
  }
}
.podcast-list__category-separator {
  display: inline-block;
  color: #747474;
  font-size: 14px;
  margin: 0 0.5rem;
}
@media only screen and (min-width: 768px) {
  .podcast-list__category-separator {
    font-size: 20px;
  }
}
.podcast-list__button-wrapper {
  flex-shrink: 0;
}
.podcast-list__no-results {
  text-align: center;
  font-size: 1.125rem;
  color: #64748B;
  padding: 2rem;
  grid-column: 1/-1;
}
.podcast-list__pagination {
  margin-top: 3rem;
  text-align: center;
}

.podcast-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.podcast-modal[aria-hidden=false] {
  display: flex;
  opacity: 1;
}
.podcast-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.podcast-modal__container {
  position: relative;
  width: 90%;
  max-width: 1820px;
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 20px;
  overflow-y: auto;
  z-index: 10000;
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.podcast-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #FFFFFF;
  z-index: 10001;
}
.podcast-modal__close svg {
  width: 24px;
  height: 24px;
}
.podcast-modal__content {
  padding: 2rem;
}
@media (min-width: 768px) {
  .podcast-modal__content {
    padding: 3rem;
  }
}
.podcast-modal__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .podcast-modal__layout {
    flex-direction: row;
    gap: 3rem;
  }
}
.podcast-modal__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 992px) {
  .podcast-modal__left {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.podcast-modal__right {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .podcast-modal__right {
    flex: 1;
  }
}
.podcast-modal__loading, .podcast-modal__error {
  text-align: center;
  font-size: 1.125rem;
  color: #64748B;
  padding: 3rem 1rem;
}
.podcast-modal__error {
  color: #EF4444;
}
.podcast-modal__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  order: 1;
}
@media (min-width: 1024px) {
  .podcast-modal__image {
    order: unset;
  }
}
.podcast-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-modal__player {
  order: 2;
  display: flex;
}
@media (min-width: 1024px) {
  .podcast-modal__player {
    order: unset;
  }
}
.podcast-modal__audio-player {
  width: 100%;
  height: 54px;
  border-radius: 8px;
}
.podcast-modal__audio-player::-webkit-media-controls-panel {
  background-color: #f5821f;
}
.podcast-modal__subscribe {
  order: 3;
  background: #F8FAFC;
  padding: 0 1.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
}
@media (min-width: 1024px) {
  .podcast-modal__subscribe {
    order: unset;
  }
}
.podcast-modal__subscribe-text {
  font-size: 0.875rem;
  color: #64748B;
  margin: 0 0 1rem 0;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .podcast-modal__subscribe-text {
    font-size: 1rem;
  }
}
.podcast-modal__subscribe-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .podcast-modal__subscribe-buttons {
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.podcast-modal__subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #3e78bc;
  border: 2px solid #3e78bc;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  .podcast-modal__subscribe-btn {
    padding: 12.5px 1rem;
    font-size: 28px;
    width: calc(50% - 0.5rem);
  }
}
.podcast-modal__subscribe-btn:hover {
  background: rgb(49.352, 95.52, 149.648);
  border-color: rgb(49.352, 95.52, 149.648);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.podcast-modal__subscribe-btn:active {
  transform: translateY(0);
}
.podcast-modal__subscribe-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.podcast-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3e78bc;
  margin: 0;
  line-height: 1.3;
  order: 4;
  text-align: center;
}
@media (min-width: 768px) {
  .podcast-modal__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .podcast-modal__title {
    font-size: 2.25rem;
    margin: 0;
    order: unset;
  }
}
.podcast-modal__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #3e78bc;
  order: 5;
  text-align: center;
}
@media (min-width: 768px) {
  .podcast-modal__meta {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .podcast-modal__meta {
    margin-bottom: 1.5rem;
    order: unset;
  }
}
.podcast-modal__date {
  color: #3e78bc;
}
.podcast-modal__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  order: 6;
}
@media (min-width: 1024px) {
  .podcast-modal__description {
    order: unset;
  }
}
.podcast-modal__description p {
  margin: 0 0 1rem 0;
}
.podcast-modal__description p:last-child {
  margin-bottom: 0;
}
.podcast-modal__description h2,
.podcast-modal__description h3,
.podcast-modal__description h4,
.podcast-modal__description h5,
.podcast-modal__description h6 {
  color: #3e78bc;
  margin: 1.5rem 0 1rem 0;
  font-weight: 700;
}
.podcast-modal__description ul,
.podcast-modal__description ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.podcast-modal__description a {
  color: #3e78bc;
  text-decoration: underline;
}
.podcast-modal__description a:hover {
  text-decoration: none;
}

/*# sourceMappingURL=podcast-list.css.map */
