* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif', serif;
    min-height: 100vh;
    background-color: #f5f5f5;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.description {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.65;
    color: #000000;
    text-align: justify;
    letter-spacing: -0.01em;
}

.hosts {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.host {
    text-align: center;
}

.host img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.host p {
    font-size: 18px;
    font-weight: 500;
}

.host p a {
    color: #000000;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.host p a:hover {
    text-decoration: underline;
}

.contact-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
}

.contact-section a {
    color: #000000;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.contact-section a:hover {
    text-decoration: underline;
}

main {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.episodes h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.episode {
    padding: 24px;
    background-color: #e8e8e8;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.episode:hover {
    background-color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.episode h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.episode-date {
    font-size: 13px;
    color: #999999;
    margin-bottom: 20px;
}

.episode-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.podcast-button {
    display: inline-block;
    background-color: #000000;
    background-image: url(https://www.buzzsprout.com/images/badges/listen-on-embed.svg);
    background-repeat: no-repeat;
    border: 1px solid #000000;
    border-radius: 5px;
    text-indent: -9000px;
    height: 40px;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.podcast-button:hover {
    opacity: 0.8;
}

.podcast-button-apple {
    background-position: 10px 7px;
    width: 165px;
}

.podcast-button-spotify {
    background-position: 10px -53px;
    width: 106px;
}

.podcast-button-google {
    background-position: 10px -113px;
    width: 165px;
}

.podcast-button-pocketcasts {
    background-position: 10px -473px;
    width: 150px;
}

.podcast-button-overcast {
    background-position: 10px -233px;
    width: 120px;
}

.show-notes {
    margin-top: 20px;
    border-top: 1px solid #d0d0d0;
    padding-top: 20px;
}

.show-notes summary {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #000000;
    user-select: none;
    list-style: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.show-notes summary::-webkit-details-marker {
    display: none;
}

.show-notes summary::before {
    content: '▶';
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.2s ease;
    font-size: 10px;
}

.show-notes[open] summary::before {
    transform: rotate(90deg);
}

.show-notes summary:hover {
    color: #333333;
}

.show-notes-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.show-notes-section {
    margin-bottom: 30px;
}

.show-notes-section:last-child {
    margin-bottom: 0;
}

.show-notes-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.show-notes-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.show-notes-section ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.show-notes-section ul li a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #999999;
    transition: text-decoration-color 0.2s ease;
}

.show-notes-section ul li a:hover {
    text-decoration-color: #000000;
}

.transcript {
    line-height: 1.7;
    white-space: pre-wrap;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 36px;
    }

    .description {
        font-size: 16px;
        padding: 0 10px;
    }

    .hosts {
        gap: 40px;
    }

    .host img {
        width: 150px;
        height: 150px;
    }

    .episode {
        padding: 20px;
    }

    .episode h3 {
        font-size: 20px;
    }
}
