/* BIOGRAPHY.CSS - Биографии из вашего оригинального файла */

.biography-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.biography-layout aside.toc {
    flex: 0 0 250px;
    position: sticky;
    top: 20px;
    background: #edf2f7;
    padding: 15px;
    border: 1px solid #cfd9e3;
    border-radius: 8px;
    height: fit-content;
}

.main-content {
    flex: 1;
    max-width: 700px;
}

.biography-detail h1 {
    font-size: 28px;
    margin-top: 5px;  
    margin-bottom: 10px;
}

.biography-detail .bio-meta {
    font-size: 14px;
    color: #667688;
    margin-bottom: 20px;
}

.bio-image {
    width: 100%;
    max-width: 1400px; /* ограничение ширины */
    max-height: 780px; /* по желанию */
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px; /* только отступ снизу */
    display: block;      /* всё ещё нужно для корректного поведения блока */
}

.bio-content {
    font-size: 17px;
    line-height: 1.7;
    color: #3c486b;
}

.bio-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em 0;
    object-fit: cover;
}

.toc {
    width: 250px;
    position: sticky;
    top: 20px;
    background: #edf2f7;
    padding: 15px;
    border: 1px solid #cfd9e3;
    border-radius: 8px;
    height: fit-content;
}

.toc h3 {
    margin-top: 0;
    font-size: 16px;
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 0px;
}

.toc a {
    font-size: 16px !important;
    line-height: 2;
    color: #1f4b85;
}

.next-story {
    margin-top: 40px;
    text-align: right;
}

.next-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #587ca1;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.next-btn:hover {
    background-color: #3c486b;
}

.story-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.prev-btn,
.next-btn {
    padding: 8px 16px;
    background-color: #2c3e80;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: #1d2d5a;
}

.spacer {
    flex-grow: 1;
}

.author-detail {
    max-width: 900px;
    margin: 0 auto;
}

.author-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.author-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.author-info h2 {
    margin-top: 0;
    font-size: 26px;
}

.author-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5a6a;
}

.featured-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dbe3ec;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 16px;
}

.featured-banner .featured-image img {
    width: 900px;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-banner .featured-text {
    max-width: 500px;
    flex: 1;
}

.featured-banner .featured-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.featured-banner .featured-title a {
    color: #3c486b;
    text-decoration: none;
}

.featured-banner .featured-author {
    font-weight: bold;
    color: #587ca1;
    margin-bottom: 16px;
}
.bio-meta-wrapper {
    display: inline-block;
    align-items: baseline;     /* выравнивание по линии текста */
    gap: 8px;                  /* равный промежуток между блоками */
    background-color: #f7f7f7;
    color: #555;
    font-size: 0.9em;
    padding: 6px 12px;
    border-radius: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.bio-meta-wrapper a {
    color: #333;
    text-decoration: underline;
}
.reading-time {
    font-style: italic;
    color: #666;
}
/* Адаптив для мобильных */
@media (max-width: 480px) {
    .bio-meta-wrapper {
        flex-direction: column; /* вертикальный стек */
        align-items: center;    /* центрируем по центру */
        gap: 4px;               /* промежуток между строками */
        font-size: 0.85em;
        padding: 5px 10px;
    }
}

.bio-birth-gradient {
    display: inline-block;
    background: linear-gradient(to right, #f8f9fa, #e2e6ea); /* мягкий градиент */
    color: #333;                /* текст чуть темнее для контраста */
    font-size: 0.95em;
    padding: 4px 12px;
    border-radius: 6px;
    margin-top: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* лёгкая тень */
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
    .bio-birth-gradient {
        display: block;
        text-align: center;
        font-size: 0.9em;
        padding: 3px 8px;
    }
}