* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
                 "Segoe UI Emoji";
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.header-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.intro {
    text-align: right;
    margin-top: 20px;
    line-height: 1.8;
}

.intro p {
    margin: 10px 0;
}

.intro a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}

.intro a:hover {
    text-decoration: underline;
}

.intro .credits {
    font-size: 0.9em;
    color: #888;
    margin-top: 20px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
}

.episode {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    gap: 15px;
}

.episode-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.episode-title {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.3em;
}

.episode-date {
    display: block;
    color: #888;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.episode-description {
    color: #555;
    margin-bottom: 15px;
}

audio {
    width: 100%;
    margin-top: 10px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #888;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .episode {
        padding: 15px;
    }
}
