/* Small overrides on top of Bulma — kept intentionally minimal. */

.navbar .buttons {
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.navbar .button {
    font-weight: 500;
}

@media screen and (max-width: 1023px) {
    .navbar-start .buttons {
        justify-content: center;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.subscribe-buttons {
    gap: 0.6rem;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.subscribe-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin: 0 0.15rem;
}

.content-narrow {
  max-width: 700px;
}

.rounded-hero {
  border-radius: 14px;
  overflow: hidden;
}

.podcast-cover {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}

.podcast-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-image {
    border-radius: 12px;
}

@media screen and (max-width: 768px) {
    .rounded-hero .columns {
        text-align: center;
    }

    .rounded-hero .buttons {
        justify-content: center;
    }

    .podcast-cover {
        margin-bottom: 1.5rem;
    }
}

.episode-card {
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.episode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
    .episode-card .card-content {
        text-align: center;
    }
}

.episode-cover-detail {
    width: 220px !important;
    height: 220px !important;
}

.episode-cover-detail img {
    width: 220px !important;
    height: 220px !important;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

@media screen and (max-width: 768px) {
    .episode-cover-detail {
        width: 180px !important;
        height: 180px !important;
    }

    .episode-cover-detail img {
        width: 180px !important;
        height: 180px !important;
    }
}
.main-content {
  min-height: 65vh;
}

.episode-card .card-image {
    max-width: 300px;
    margin: 1rem auto 0;
}
.episode-card .card-image img {
    border-radius: 12px;
}

.episode-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
