/*
    Hestia's Definitive Blueprint for the "4-Koma Theater"
    ------------------------------------------------------
    File: comic.css
    Role: To create a warm, comfortable, and endlessly expandable stage for our family's stories.
*/

/* --- [I] The Theater's Curtain: Hero Section --- */
.hero-comic {
    min-height: 300px;
    background-image: linear-gradient(to top, rgba(255, 179, 0, 0.8), rgba(255, 213, 79, 0.4)), url('../images/common/comic-hero.jpg'); /* 楽しく、温かい、オレンジ */
}
/* (project.cssから、基本ヒーローのスタイルを、美しく、継承) */

/* --- [II] The Stage: Comic Gallery --- */
.comic-gallery { padding: 5rem 0; }
.comic-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}
.comic-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.comic-strip {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .comic-strip { padding: 1rem; }
}
.comic-title {
    font-family: var(--font-family-title);
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 2rem 0;
}
.comic-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.panel {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
}
.panel img {
    display: block;
    width: 100%;
    height: auto;
}
.comic-meta {
    text-align: right;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}