:root {
  --card-thumbnail-size: 80px;
}

/* 3-column grid layout */
.podcast-cards-grid-5a18cb44 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 1024px) {
  .podcast-cards-grid-5a18cb44 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .podcast-cards-grid-5a18cb44 {
    grid-template-columns: 1fr;
  }
}

/* Card */
.podcast-card-5a18cb44 {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-card-5a18cb44:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

/* Thumbnail */
.podcast-card-left-5a18cb44 {
  flex-shrink: 0;
  width: var(--card-thumbnail-size);
  height: var(--card-thumbnail-size);
}

.podcast-card-left-5a18cb44 img,
.podcast-card-img-placeholder-5a18cb44 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.podcast-card-img-placeholder-5a18cb44 {
  background-color: #ddd;
}

/* Text content */
.podcast-card-right-5a18cb44 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.podcast-card-title-5a18cb44 {
  margin: 0 0 6px 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card-title-5a18cb44 a {
  color: inherit;
  text-decoration: none;
}

.podcast-card-title-5a18cb44 a:hover {
  color: #0073aa;
}

.podcast-card-meta-row-5a18cb44 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #777;
}

.podcast-card-cat-5a18cb44 {
  background-color: #eaeaea;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}

/* No posts message */
.podcast-no-posts-5a18cb44 {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  padding: 24px 0;
}

/* Load More */
.podcast-load-more-wrap-5a18cb44 {
  text-align: center;
  margin-top: 28px;
}

.podcast-load-more-btn-5a18cb44 {
  background-color: #0073aa;
  color: #ffffff;
  border: none;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, border-radius 0.2s ease;
}

.podcast-load-more-btn-5a18cb44:hover:not(:disabled) {
  background-color: #005177;
  color: #ffffff;
}

.podcast-load-more-btn-5a18cb44:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner-5a18cb44 {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin5a18cb44 0.8s linear infinite;
}

@keyframes spin5a18cb44 {
  to { transform: rotate(360deg); }
}
