/* Two-Column Content Layout */
.content-layout-wrapper {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 40px;
  max-width: 1248px;
  margin: 0 auto;
  padding: 60px 0;
}

.posts-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.posts-label::before {
  content: "—";
  color: #ddd;
}

.regular-posts-column,
.podcast-posts-column {
  display: flex;
  flex-direction: column;
}

.regular-posts-column .compact-posts-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0;
}

/* Featured Post - Left Column */
.featured-post {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d2d2;
}

.featured-post .post-thumbnail {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  max-height: 400px;
  background: #f5f5f5;
}

.featured-post .post-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--thumb-bg);
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}

.featured-post .post-thumbnail img {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  z-index: 1;
}

.featured-post .post-thumbnail a:hover img {
  transform: scale(1.03);
}

.featured-post .entry-title {
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-primary);
  line-height: 1.4;
  margin: 0 0 12px 0;
  min-height: 120px;
  display: flex;
}

.featured-post .entry-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-post .entry-title a:hover {
  color: #000;
}

.featured-post .entry-meta {
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
  opacity: 0.7;
}

.entry-meta .posted-on {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Compact Posts - Left Column */
.compact-post {
  flex: 1;
  padding: 18px 14px;
  border-right: 1px solid #d2d2d2;
  transition: all 0.2s ease;
}

.compact-post:last-child {
  border-right: none;
}

.compact-post:hover {
  transform: translateY(-2px);
}

.compact-post .entry-meta {
  margin-bottom: 6px;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
  opacity: 0.7;
}

.compact-post .entry-title {
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.compact-post .entry-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.compact-post .entry-title a:hover {
  color: #666;
}

/* Featured Podcast - Right Column */
.featured-podcast {
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d2d2;
}

.featured-podcast .post-thumbnail {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  max-height: 400px;
  background: #f5f5f5;
}

.featured-podcast .post-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--thumb-bg);
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}

.featured-podcast .post-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.featured-podcast .post-thumbnail:hover::before {
  opacity: 1;
}

.featured-podcast .post-thumbnail img {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  z-index: 1;
}

.featured-podcast .post-thumbnail a:hover img {
  transform: scale(1.03);
}

.featured-podcast .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 1;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-podcast .post-thumbnail a:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-podcast .play-overlay svg {
  width: 36px;
  height: 36px;
}

.featured-podcast .play-overlay svg circle {
  display: none;
}

.featured-podcast .play-overlay svg path {
  fill: #000;
}

/* Duration overlay at bottom right */
.featured-podcast .post-thumbnail .duration-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 42px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
}

.featured-podcast .post-thumbnail .duration-overlay svg {
  fill: #fff;
}

.featured-podcast .post-thumbnail .duration-overlay:hover svg {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.featured-podcast .entry-header .posted-on {
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
  opacity: 0.7;
}

.featured-podcast .entry-title {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-primary);
  line-height: 1.4;
  margin: 0 0 12px 0;
  display: flex;
  min-height: 120px;
}

.featured-podcast .entry-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-podcast .entry-title a:hover {
  color: #000;
}

.featured-podcast .entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #888;
  font-size: 13px;
  font-weight: 400;
}

/* Hide duration in entry-meta, shown in thumbnail overlay instead */
.featured-podcast .entry-meta .duration {
  display: none;
}

/* Compact Podcasts - Right Column */
.compact-podcast {
  padding: 18px 0;
  border-bottom: 1px solid #efefef;
  transition: all 0.2s ease;
}

.compact-podcast:last-child {
  border-bottom: none;
  margin-top: 20px;
}

.compact-podcast:hover {
  padding-left: 0;
}

.compact-podcast .podcast-meta-wrapper {
  flex: 1;
  min-width: 0;
}

.compact-podcast .entry-meta {
  margin-bottom: 6px;
  color: #1f1f1f;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  opacity: 0.7;
}

.compact-podcast .entry-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 8px 0;
  font-family: var(--font-primary);
}

.compact-podcast .entry-title a {
  color: #1f1f1f;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-podcast .entry-title a:hover {
  color: #666;
}

.compact-podcast .duration-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 12px;
  font-weight: 400;
}

.compact-podcast .duration-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.compact-podcast .play-button {
  flex-shrink: 0;
  color: #1f1f1f;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.75;
  margin-top: 0.5rem !important;
}

.compact-podcast .play-button:hover svg {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-layout-wrapper {
    gap: 60px;
    padding: 50px 30px;
    grid-template-columns: 1fr;
  }

  .featured-post .entry-title {
    font-size: 32px;
    height: auto;
    min-height: 0;
  }

  .featured-podcast .entry-title {
    font-size: 17px;
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .content-layout-wrapper {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 40px 20px;
  }

  .regular-posts-column .compact-posts-wrapper {
    flex-direction: column;
  }

  .compact-post {
    border-right: none;
    border-bottom: 1px solid #efefef;
    padding: 18px 0;
  }

  .compact-post:last-child {
    border-bottom: none;
  }

  .posts-label {
    margin-bottom: 20px;
  }

  .featured-post .entry-title {
    font-size: 28px;
  }

  .compact-post .entry-title {
    font-size: 17px;
  }

  .featured-podcast .entry-title {
    font-size: 17px;
  }

  .compact-podcast .entry-title {
    font-size: 14px;
  }

  .featured-podcast .play-overlay {
    width: 60px;
    height: 60px;
  }

  .featured-podcast .play-overlay svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .content-layout-wrapper {
    padding: 30px 16px;
    gap: 60px;
  }

  .featured-post .entry-title {
    font-size: 24px;
  }

  .compact-post .entry-title {
    font-size: 16px;
  }

  .compact-podcast {
    gap: 12px;
  }

  .featured-podcast .play-overlay {
    width: 50px;
    height: 50px;
  }

  .featured-podcast .play-overlay svg {
    width: 24px;
    height: 24px;
  }
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-post,
.compact-post,
.featured-podcast,
.compact-podcast {
  animation: fadeIn 0.4s ease forwards;
  opacity: 0;
}

.featured-post,
.featured-podcast {
  animation-delay: 0.1s;
}

.compact-post:nth-child(3) {
  animation-delay: 0.2s;
}
.compact-post:nth-child(4) {
  animation-delay: 0.3s;
}
.compact-post:nth-child(5) {
  animation-delay: 0.4s;
}

.compact-podcast:nth-child(3) {
  animation-delay: 0.2s;
}
.compact-podcast:nth-child(4) {
  animation-delay: 0.3s;
}
.compact-podcast:nth-child(5) {
  animation-delay: 0.4s;
}

/* ============================================
   Blog List Section - Blogs mới nhất
   ============================================ */
.blog-list-section {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 0 40px 80px;
}

.blog-list-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-list-section .section-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
  color: #1f1f1f;
  margin: 0;
  text-align: left;
}

/* Filter Tabs */
.blog-filter-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #efefef;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 500;
  color: #1e1e1e;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.filter-tab:hover {
  color: #10301c;
}

.filter-tab.active {
  color: #10301c;
  border-bottom: 2px solid #10301c;
  font-weight: 600;
}

/* Blog List Grid */
.blog-list-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-list-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #efefef;
  transition: padding-left 0.3s ease;
}

.blog-list-item:first-child {
  padding-top: 0;
}

.blog-list-item:last-child {
  border-bottom: none;
}

.blog-list-item:hover {
  padding-left: 12px;
}

.blog-item-thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 360px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.blog-item-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--thumb-bg);
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}

.blog-item-thumbnail img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.3s ease;
}

.blog-list-item:hover .blog-item-thumbnail img {
  transform: scale(1.05);
}

/* Podcast Play Overlay */
.blog-item-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.blog-list-item[data-type="podcast"]:hover .blog-item-play-overlay {
  opacity: 1;
}

/* Duration Badge */
.blog-item-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.blog-item-duration svg {
  width: 14px;
  height: 14px;
}

/* Blog Item Content */
.blog-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.blog-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: #888;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

.blog-item-meta svg {
  flex-shrink: 0;
}

.blog-item-type {
  font-weight: 500;
}

.blog-item-date {
  font-weight: 500;
}

.blog-item-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  font-family: var(--font-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-item-title a:hover {
  color: #000;
}

.blog-item-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item-link {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.blog-item-link:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* Podcast Play Button in Blog List */
.blog-item-play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 32px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.blog-item-play-button:hover {
  background: #e8e8e8;
  transform: translateX(4px);
}

.blog-item-play-button svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.blog-item-play-button:hover svg {
  transform: scale(1.05);
}

.blog-item-play-button span {
  white-space: nowrap;
}

/* Pagination */
.blog-list-pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.blog-list-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
}
.blog-list-pagination .page-numbers:hover {
  background-color: transparent;
}

.blog-list-pagination .page-numbers li {
  list-style: none;
}

.blog-list-pagination a,
.blog-list-pagination span.current,
.blog-list-pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #10301c;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-list-pagination a:hover {
  background: #10301c !important;
  color: #fff;
}

.blog-list-pagination span.current,
.blog-list-pagination .current {
  background: #10301c;
  color: #fff;
  border-color: #10301c;
  pointer-events: none;
}

.blog-list-pagination .dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  color: #666;
  border: none;
}

.blog-list-pagination a.prev,
.blog-list-pagination a.next {
  padding: 0;
  min-width: 44px;
}

.blog-list-pagination a.prev svg,
.blog-list-pagination a.next svg {
  width: 20px;
  height: 20px;
}

/* Load More Button */
.blog-list-load-more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.load-more-btn {
  padding: 14px 48px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  color: #fff;
  background: #1a1a1a;
}

/* Podcast Play Button in Blog List */
.slide-play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 32px;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  margin-top: 1rem;
}

.slide-play-button:hover {
  background: #e8e8e8;
  transform: translateX(4px);
}

.slide-play-button svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.slide-play-button:hover svg {
  transform: scale(1.05);
}

.slide-play-button span {
  white-space: nowrap;
}

/* Responsive - Blog List Section */
@media (max-width: 1024px) {
  .blog-list-section {
    padding: 0 30px 60px;
    margin-top: 60px;
  }

  .blog-list-section .section-title {
    font-size: 44px;
  }

  .blog-item-thumbnail {
    width: 300px;
  }

  .blog-item-title {
    font-size: 28px;
  }

  .blog-item-meta {
    font-size: 18px;
  }

  .blog-item-excerpt {
    font-size: 15px;
  }

  .blog-item-link {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .blog-list-section {
    padding: 0 20px 50px;
    margin-top: 50px;
  }

  .blog-list-container {
    gap: 32px;
  }

  .blog-list-section .section-title {
    font-size: 42px;
  }

  .blog-filter-tabs {
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tab {
    padding: 8px 20px;
    font-size: 13px;
    white-space: nowrap;
  }

  .blog-list-item {
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }

  .blog-list-item:hover {
    padding-left: 0;
  }

  .blog-item-thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .blog-item-title {
    font-size: 24px;
  }

  .blog-item-meta {
    font-size: 16px;
  }

  .blog-item-excerpt {
    font-size: 14px;
  }

  .blog-item-link {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .blog-list-section {
    padding: 0 16px 40px;
    margin-top: 40px;
  }

  .blog-list-section .section-title {
    font-size: 40px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 1rem;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 12px;
  }

  .load-more-btn {
    padding: 12px 36px;
    font-size: 14px;
  }
}

/* ============================================
   Trending Podcasts Slideshow
   ============================================ */
.trending-podcasts-section {
  background: #0a0a0a;
  padding: 80px 0;
  margin-top: 80px;
}

.trending-podcasts-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}

.trending-podcasts-title {
  font-size: 48px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #fff;
  margin: 0 0 4rem 0;
  text-align: center;
}

.trending-podcasts-slider-wrapper {
  position: relative;
  padding: 0 60px;
}

.trending-podcasts-slider {
  width: 100%;
}

.trending-podcasts-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease-in-out;
}

.trending-podcast-item {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
}

.trending-podcast-link {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.trending-podcast-link:hover {
  transform: translateY(-8px);
}

.trending-podcast-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 16px;
}

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

.trending-podcast-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.trending-podcast-duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-primary);
  z-index: 2;
}

.trending-podcast-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.trending-podcast-link:hover .trending-podcast-play-overlay {
  opacity: 1;
}

.trending-podcast-meta {
  padding: 0 4px;
}

.trending-podcast-date {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: #999;
  margin-bottom: 8px;
}

.trending-podcast-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #fff;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slider-nav-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.slider-nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .trending-podcasts-section {
    padding: 60px 0;
    margin-top: 60px;
  }

  .trending-podcasts-container {
    padding: 0 24px;
  }

  .trending-podcasts-title {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .trending-podcasts-slider-wrapper {
    padding: 0 50px;
  }

  .trending-podcast-item {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .slider-nav-button svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trending-podcasts-section {
    padding: 48px 0;
    margin-top: 48px;
  }

  .trending-podcasts-container {
    padding: 0 16px;
  }

  .trending-podcasts-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .trending-podcasts-slider-wrapper {
    padding: 0 40px;
  }

  .trending-podcast-item {
    flex: 0 0 100%;
  }

  .trending-podcast-title {
    font-size: 16px;
  }

  .trending-podcast-date {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .trending-podcasts-slider-wrapper {
    padding: 0 32px;
  }

  .blog-item-play-button {
    padding: 0;
  }
}
