.podcast-shell {
    display: grid;
    gap: 1.25rem;
}

.podcast-show-card {
    overflow: hidden;
}

.podcast-show-body {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.podcast-cover {
    flex: 0 0 108px;
    width: 108px;
    height: 108px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    background: linear-gradient(135deg, var(--axolotl-blue) 0%, var(--axolotl-teal) 100%);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.podcast-show-copy h1 {
    margin: 0 0 0.35rem;
    font-size: 1.6rem;
    color: var(--text-primary);
}

.podcast-badge {
    display: inline-block;
    margin: 0 0 0.5rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--axolotl-blue-pale);
    color: var(--axolotl-teal-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.podcast-description {
    margin: 0 0 0.85rem;
    color: var(--text-secondary);
    max-width: 64ch;
}

.podcast-show-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.podcast-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.podcast-episode-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

.podcast-episode-item {
    position: relative;
    display: flex;
    gap: 0.85rem;
    padding: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
}

.podcast-episode-art-link,
.podcast-episode-art {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.podcast-episode-art-placeholder {
    background: linear-gradient(135deg, var(--axolotl-blue-pale) 0%, var(--axolotl-orange-pale) 100%);
    color: var(--axolotl-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.podcast-episode-content {
    flex: 1;
    min-width: 0;
}

.podcast-episode-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.podcast-episode-title a {
    color: var(--text-primary);
}

.podcast-episode-title a:hover {
    color: var(--axolotl-blue);
}

.podcast-episode-description {
    margin: 0.45rem 0 0.75rem;
    color: var(--text-secondary);
    white-space: pre-line;
}

.podcast-audio-player {
    width: min(560px, 100%);
}

.podcast-episode-links {
    margin-top: 0.7rem;
}

.podcast-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.podcast-admin-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.podcast-admin-form {
    max-width: 900px;
}

.podcast-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.podcast-publish-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.podcast-radio-option {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.podcast-schedule-input {
    max-width: 260px;
}

.podcast-status-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
}

.podcast-status-badge.is-published {
    color: #065f46;
    background: #d1fae5;
    border-color: #6ee7b7;
}

.podcast-status-badge.is-scheduled {
    color: #1d4ed8;
    background: #dbeafe;
    border-color: #93c5fd;
}

.podcast-status-badge.is-draft {
    color: #7f1d1d;
    background: #fee2e2;
    border-color: #fca5a5;
}

.podcast-admin-row-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.podcast-inline-form {
    margin: 0;
}

.podcast-episode-detail-body {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.podcast-episode-detail-art-wrap {
    flex: 0 0 200px;
}

.podcast-episode-detail-art {
    width: 200px;
    height: 200px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.podcast-episode-detail-content {
    flex: 1;
    min-width: 0;
}

.podcast-episode-detail-title {
    margin: 0 0 0.45rem;
    font-size: 1.9rem;
}

.podcast-episode-detail-player {
    margin-top: 0.85rem;
}

.podcast-episode-detail-description {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .podcast-admin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .podcast-show-body,
    .podcast-episode-detail-body {
        align-items: flex-start;
        flex-direction: column;
    }

    .podcast-cover {
        width: 88px;
        height: 88px;
        font-size: 1.9rem;
    }

    .podcast-episode-item {
        flex-direction: column;
    }

    .podcast-status-badge {
        position: static;
        align-self: flex-start;
        margin-top: 0.25rem;
    }

    .podcast-episode-detail-art-wrap,
    .podcast-episode-detail-art {
        width: 140px;
        height: 140px;
    }
}
