.podcast-container {
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.podcast-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.podcast-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.podcast-infos {
    width: 100%;
}

.podcast-meta h1 {
    font-size: 28px;
    color: black;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.podcast-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.podcast-meta ul li {
    font-size: 14px;
    color: #000000;
    font-weight: 700;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #00000012;
}

.podcast-meta ul li:last-child {
    border: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.podcast-meta ul li i {
    color: var(--hmt-accent-color);
    font-size: 20px;
}

.podcast-thumbnail {
    flex: 0.5;
    text-align: right;
}

.podcast-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.podcast-content h2 {
    font-size: 22px;
    color: var(--hmt-accent-color);
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.podcast-intro, .podcast-discussion, .podcast-audio {
    margin-bottom: 20px;
}

.podcast-meta,
.podcast-intro p, .podcast-discussion div, .podcast-guide p {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    width: 100%;
}

.audio-player {
    text-align: center;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.audio-player audio {
    width: 100%;
    max-width: 600px;
}

.podcast-buttons {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.podcast-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    background-color: var(--hmt-primary-color);
    color: #ffffff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.podcast-btn i {
    font-size: 16px;
}

.podcast-btn:hover {
    background-color: var(--hmt-accent-color);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

.podcast-share {
    cursor: pointer;
    width: 100%;
    background-color: var(--hmt-accent-color);
    color: white;
}

.podcast-share:hover {
    background-color: var(--hmt-accent-hover-color);
    color: white;
}

.podcast-listen {
    cursor: pointer;
    width: 100%;
    background-color: var(--hmt-primary-color);
    color: white;
}

.podcast-listen:hover {
    background-color: var(--hmt-primary-hover-color);
    color: white
}

@media (max-width: 768px) {
    .podcast-header-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .podcast-thumbnail img {
        width: 100%;
        height: auto;
    }
    .podcast-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .podcast-meta h1 {
        font-size: 18px;
    }
}

.podcast-container #comments {
    box-shadow: none;
    border-top: 1px solid #d9d9d9;
    padding-top: 25px;
    border-radius: 0;
}