/* --- Оглавление (колонка оверлея — в common.css) ---
   Палитра: заголовки сезона/арки — золото; название многочастной истории — светлый текст (не ссылка);
   главы — неоново-жёлтые ссылки; одна глава целиком — тёплый янтарь (не совпадает с h2/h3 и с главами). */

#toc {
    padding: 0 30px;
    margin: -20px auto -40px auto;
    color: white;
    text-align: center;
}

.season-block {
    margin-top: -30px;
    padding: 10px 0;
}

.season-block h2 {
    font-size: 60px;
    color: rgb(251, 204, 0);
    margin-bottom: 10px;
}

.season-block h3 {
    font-size: 45px;
    color: rgb(232, 219, 0);
    margin-top: 15px;
    margin-bottom: 10px;
}

.entry {
    margin-bottom: 20px;
}

/* Название истории, когда ниже список глав (не кликабельно само по себе) */
.entry-title {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    color: rgb(255, 252, 235);
    font-weight: bold;
}

/* Одна часть: весь заголовок — ссылка (янтарь; не h2/h3 и не rgb(251,255,0) у глав) */
a.entry-title-link {
    display: inline-block;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(255, 196, 72);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

a.entry-title-link:hover {
    color: rgb(255, 222, 130);
    text-decoration: underline;
}

.entry ul {
    padding-left: 0;
    list-style: none;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.entry li {
    font-size: 24px;
    margin: 0;
}

/* Отдельные главы (под заголовком многочастной истории) */
a.entry-chapter-link {
    color: rgb(251, 255, 0);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.entry-chapter-link:hover {
    color: rgb(250, 179, 7);
    text-decoration: underline;
}

.dash-entry {
    color: rgb(200, 200, 198);
    font-style: italic;
    font-size: 22px;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    #toc {
        padding: 0 20px;
        margin: -10px auto -20px auto;
    }

    .season-block h2 {
        font-size: 42px;
        margin-bottom: 8px;
    }

    .season-block h3 {
        font-size: 28px;
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .entry-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    a.entry-title-link {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .entry ul {
        gap: 8px;
    }

    .entry li {
        font-size: 18px;
    }

    .dash-entry {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .season-block h2 {
        font-size: 26px;
    }

    .season-block h3 {
        font-size: 20px;
    }

    .entry-title {
        font-size: 17px;
    }

    a.entry-title-link {
        font-size: 17px;
    }

    .entry li {
        font-size: 14px;
    }

    .dash-entry {
        font-size: 14px;
    }
}
