:root {
    --bg: #F7F7F7;
    --white: #FFFFFF;
    --gray: #E8E8E8;
    --text: #1A1A1A;
    --text-light: #666666;
    --gold: #C4956A;
    --gold-dark: #A07050;
    --shadow: 0 2px 16px rgba(0,0,0,0.05);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 30px;
    font-weight: 500; font-size: 0.95rem; cursor: pointer;
    transition: all 0.3s ease; text-decoration: none; border: none;
    font-family: 'Inter', sans-serif;
}
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold-dark); }
.btn-outline:hover { background: var(--gold); color: white; }

/* ===== ШАПКА ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    padding: 16px 0;
    position: sticky; top: 0; z-index: 100;
    margin-top: 40px;
}
.header-container {
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 10px;
}
.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600;
    text-decoration: none; color: var(--text);
}
.nav-menu {
    display: flex; gap: 2px; flex-wrap: wrap;
    justify-content: center;
}
.nav-centered { justify-content: center; }

.nav-menu a {
    padding: 8px 14px; text-decoration: none; color: var(--text);
    font-size: 0.82rem; font-weight: 500; border-radius: 20px;
    transition: all 0.3s ease; white-space: nowrap;
}
.nav-menu a:hover { background: var(--gray); }
.nav-menu a.active { background: var(--text); color: white; }

/* ===== КОЛЛАЖ ===== */
.hero-collage {
    display: grid; grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px; gap: 4px;
    padding: 4px 0;
}
.hero-collage img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease; cursor: pointer;
    border-radius: 4px;
}
.hero-collage img:nth-child(even) {
    transform: translateY(30px);
}
.hero-collage img:hover {
    transform: scale(1.04);
    z-index: 1;
}
.hero-collage img:nth-child(even):hover {
    transform: translateY(30px) scale(1.04);
}
.hero-collage img:hover { transform: scale(1.03); }

/* ===== ИМЯ ===== */
.hero-name {
    text-align: center; padding: 50px 0 50px;
}
.hero-name h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 0.85rem; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.1em;
}

/* ===== СЕКЦИИ ===== */
.section { padding: 60px 0; }
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; margin-bottom: 30px; text-align: center;
}
.section-sub {
    text-align: center; color: var(--text-light);
    max-width: 700px; margin: 0 auto 40px; font-size: 0.95rem;
}

/* ===== КРАТКО О МАСТЕРЕ ===== */
.about-brief-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.about-brief-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}
.about-brief-dates {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
}
.about-brief-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.about-brief-titles span {
    display: inline-block;
    padding: 5px 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-light);
}
.about-brief-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 14px;
}
.about-brief .btn { margin-top: 10px; }

@media (max-width: 768px) {
    .about-brief-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-brief-photo { max-width: 300px; margin: 0 auto; }
}

/* ===== ГАЛЕРЕЯ ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.gallery-item {
    background: var(--white); border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow); transition: all 0.3s ease;
    cursor: pointer;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
    width: 100%; height: 250px; object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-caption {
    padding: 14px 16px; font-size: 0.8rem; color: var(--text-light);
}
.gallery-item-caption strong { color: var(--text); display: block; margin-bottom: 2px; }

/* ===== ПУБЛИКАЦИИ ===== */
.publication {
    background: var(--white); border-radius: 8px; padding: 24px;
    margin-bottom: 16px; box-shadow: var(--shadow);
}
.publication h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 6px; }
.publication p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 8px; }
.publication a { color: var(--gold-dark); text-decoration: none; font-weight: 500; }
.publication a:hover { text-decoration: underline; }

/* ===== КОНТАКТЫ ===== */
.contacts-block {
    text-align: center; padding: 40px;
    background: var(--white); border-radius: 8px;
    box-shadow: var(--shadow);
}
.contacts-block p { margin-bottom: 20px; color: var(--text-light); }
.contacts-block .btn { margin: 0 6px; }

/* ===== ЗАГЛУШКА ===== */
.placeholder {
    text-align: center; padding: 80px 20px;
    color: var(--text-light);
}
.placeholder h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 10px; color: var(--text); }

/* ===== МОДАЛКА ПРОСМОТРА ===== */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 4px; }
.lightbox-caption {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: white; font-size: 0.9rem; text-align: center;
    background: rgba(0,0,0,0.6); padding: 10px 20px; border-radius: 8px;
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    color: white; font-size: 2rem; cursor: pointer;
    background: none; border: none;
}

/* ===== ФУТЕР ===== */
.site-footer {
    background: var(--text); color: white;
    padding: 24px 0; text-align: center; font-size: 0.8rem;
    opacity: 0.9;
}

/* ===== МЕНЮ ПО ЦЕНТРУ ===== */
.nav-centered { justify-content: center; }

/* ===== КРЕДО ===== */
.credo-section {
    padding: 50px 0 30px;
    text-align: center;
}
.credo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.5;
    color: var(--text);
}
.credo-author {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== ЭССЕ ===== */
.essay-block {
    max-width: 800px;
    margin: 0 auto;
}
.essay-block p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== ОГРОМНОЕ ФОТО ===== */
.hero-work {
    position: relative;
    margin: 0;
}
.hero-work img {
    width: 100%; height: 80vh; object-fit: cover;
    object-position: center 30%;
}
.hero-work-caption {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.6); color: white;
    padding: 8px 20px; border-radius: 8px;
    font-size: 0.85rem; text-align: center;
}

/* ===== НАПРАВЛЕНИЯ ===== */
.directions-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.direction-card {
    position: relative; border-radius: 8px; overflow: hidden;
    text-decoration: none; height: 400px; display: block;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}
.direction-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.direction-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.direction-card:hover img { transform: scale(1.05); }
.direction-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.direction-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px; color: white;
}
.direction-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; margin-bottom: 4px;
}
.direction-info p { font-size: 0.85rem; opacity: 0.8; }

@media (max-width: 768px) {
    .hero-name h1 { font-size: 2rem; }
    .credo-text { font-size: 1.2rem; }
    .directions-grid { grid-template-columns: 1fr; }
    .direction-card { height: 300px; }
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .hero-collage { grid-template-columns: 1fr 1fr; }
    .photo-essay { grid-template-columns: 1fr; }
    .header-container { flex-direction: column; }
    .nav-menu { justify-content: center; }
}

/* ===== ТАЙМЛАЙН АРХИВА ===== */
.timeline { display: flex; flex-direction: column; gap: 60px; }
.timeline-item {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.timeline-item.reverse .timeline-photo { order: 2; }
.timeline-item.reverse .timeline-text { order: 1; }
.timeline-photo img {
    width: 100%; border-radius: 8px; box-shadow: var(--shadow-lg);
}
.timeline-year {
    display: inline-block; padding: 4px 14px; border-radius: 20px;
    background: var(--gold); color: white; font-size: 0.8rem;
    font-weight: 600; margin-bottom: 10px;
}
.timeline-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; margin-bottom: 8px;
}
.timeline-text p {
    color: var(--text-light); font-size: 0.9rem; line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline-item { grid-template-columns: 1fr; }
    .timeline-item.reverse .timeline-photo { order: 1; }
    .timeline-item.reverse .timeline-text { order: 2; }
}

/* ===== ПОРТРЕТЫ ===== */
.portraits-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: center;
}
.portraits-slider {
    position: relative; border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow-lg); height: 400px;
}
.portraits-slider img {
    width: 100%; height: 100%; object-fit: cover;
    display: none; transition: opacity 0.5s ease;
}
.portraits-slider img.active { display: block; }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,0,0,0.5); color: white;
    border: none; cursor: pointer; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; z-index: 10;
}
.slider-arrow:hover { background: rgba(0,0,0,0.8); }
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }
.slider-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
}
.slider-dots button {
    width: 10px; height: 10px; border-radius: 50%;
    border: none; background: rgba(255,255,255,0.5); cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dots button.active { background: white; }
.portraits-text p {
    color: var(--text-light); font-size: 0.95rem; line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .portraits-block { grid-template-columns: 1fr; }
    .portraits-slider { height: 300px; }
}

.portraits-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-top: -20px;
    margin-bottom: 16px;
}

/* ===== КОНТАКТЫ В ФУТЕРЕ ===== */
.footer-contacts {
    margin-top: 16px;
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.footer-contacts a {
    color: white; text-decoration: none;
    padding: 8px 16px; border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px; font-size: 0.8rem;
    transition: all 0.3s ease;
}
.footer-contacts a:hover {
    background: var(--gold); border-color: var(--gold);
}

.hero-link {
    text-decoration: none; color: inherit;
    display: inline-block;
}
.hero-link:hover h1 {
    color: var(--gold-dark);
    transition: color 0.3s ease;
}

.publication-author {
    font-size: 0.82rem;
    color: var(--gold-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

/* ===== ТАЙМЛАЙН ===== */
.timeline { display: flex; flex-direction: column; gap: 60px; }
.timeline-item {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.timeline-item.reverse .timeline-photo { order: 2; }
.timeline-item.reverse .timeline-text { order: 1; }
.timeline-photo img {
    width: 100%; border-radius: 8px; box-shadow: var(--shadow-lg);
}
.timeline-year {
    display: inline-block; padding: 4px 14px; border-radius: 20px;
    background: var(--gold); color: white; font-size: 0.8rem;
    font-weight: 600; margin-bottom: 10px;
}
.timeline-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; margin-bottom: 8px;
}
.timeline-text p {
    color: var(--text-light); font-size: 0.9rem; line-height: 1.7;
}
.timeline-text blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 16px; margin: 12px 0;
    font-style: italic; color: var(--text-light);
    font-size: 0.9rem; line-height: 1.6;
}
.publication-author {
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .timeline-item { grid-template-columns: 1fr; }
    .timeline-item.reverse .timeline-photo { order: 1; }
    .timeline-item.reverse .timeline-text { order: 2; }
}

.credo-source {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

/* ===== АНИМАЦИЯ ПОЯВЛЕНИЯ СТРАНИЦЫ ===== */
body {
    animation: pageFadeIn 0.6s ease;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gold); color: white; border: none;
    font-size: 1.3rem; cursor: pointer; z-index: 99;
    opacity: 0; pointer-events: none; transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196,149,106,0.3);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* Особое кадрирование для фото «Рыбак» */
.gallery-item img[alt="Рыбак"] {
    object-position: center 5%;
}
/* Особое кадрирование для вертикальных работ */
.gallery-item img[alt="Победитель"] {
    object-position: center 15%;
}
.gallery-item img[alt="Цаган аава"] {
    object-position: center 15%;
}

.hero-collage img[src="images/easel3.jpg"] {
    object-position: center 15%;
}

.buddha-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 40px;
}
.buddha-featured .gallery-item img {
    height: 500px; object-fit: cover;
}

@media (max-width: 768px) {
    .buddha-featured { grid-template-columns: 1fr; }
}

/* ===== МИНИ-СЛАЙДЕР В КАРТОЧКЕ ===== */
.mini-slider {
    position: relative; width: 100%; height: 250px; overflow: hidden;
}
.mini-slider img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 0.4s ease;
}
.mini-slider img.active { opacity: 1; }
.mini-prev, .mini-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,0,0,0.5); color: white;
    border: none; cursor: pointer; font-size: 1rem;
    z-index: 2; display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease;
}
.mini-prev:hover, .mini-next:hover { background: rgba(0,0,0,0.8); }
.mini-prev { left: 8px; }
.mini-next { right: 8px; }

/* Фокус на лице для станковых работ */
.gallery-item img[alt="Год змеи"],
.gallery-item img[alt="ХХ век"],
.gallery-item img[alt="Ева"],
.gallery-item img[alt="Золотой мальчик. Серебряная девочка"],
.gallery-item img[alt="Моцарт и Сальери"],
.gallery-item img[alt="Утро"],
.gallery-item img[alt="Эскиз памятника Богатырь Джангар"] {
    object-position: center 10%
}
/* ===== ЦИТАТЫ ===== */
.quotes-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.quotes-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
}
.quote-block {
    background: white;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-light);
    box-shadow: var(--shadow);
}
.quote-block cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
}
/* ===== ЦИТАТА С ФОТО ===== */
.quote-with-photo {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
}
.quote-with-photo .quote-block {
    margin-bottom: 0;
}
.quote-photo {
    text-align: center;
}
.quote-photo img {
    width: 140px; height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}
.quote-photo span {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .quote-with-photo { grid-template-columns: 1fr; }
    .quote-photo img { width: 100px; height: 130px; }
}
.quotes-on-main {
    background: linear-gradient(180deg, var(--bg) 0%, #F0E8D8 100%);
}

/* Фокус на лице для статуй Будды */
.gallery-item img[alt="Статуя Будды в Большом Царыне"] {
    object-position: center 20%;
}

.gallery-item img[alt="Статуя Будды в хуруле Аршан-Зельмень"] {
    object-position: center 10%;
}

/* Далай-лама — понизить фокус */
.gallery-item img[alt="Далай-лама XIV перед статуей Будды Шакьямуни"] {
    object-position: center 60%;
}

@media (max-width: 768px) {
    .hero-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 100px;
        gap: 3px;
    }
    .hero-collage img:nth-child(even) {
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-item img {
        height: 160px;
    }
    .mini-slider {
        height: 160px;
    }
    .gallery-item-caption {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    .gallery-item-caption strong {
        font-size: 0.8rem;
    }
    .mini-prev, .mini-next {
        width: 24px; height: 24px;
        font-size: 0.8rem;
    }
}

/* ===== ВИДЕО ===== */
.video-block {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}
.site-video {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background: #000;
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.video-item { display: flex; flex-direction: column; }
.video-caption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 768px) {
    .video-grid { grid-template-columns: 1fr; }
}

.photo-essay {
    display: grid; grid-template-columns: 0.8fr 1.2fr;
    gap: 40px; align-items: start;
}
.photo-large img {
    width: 90%; border-radius: 8px; box-shadow: var(--shadow-lg);
}

/* Продолжение биографии по центру */
.essay-continued {
    max-width: 800px;
    margin: 60px auto 0;
}
.essay-continued h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin: 24px 0 10px;
    color: var(--gold-dark);
}
.essay-continued p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.essay-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin: 24px 0 10px;
    color: var(--gold-dark);
}
.essay-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}
.footer-sources {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 16px;
    padding: 0 20px;
    line-height: 1.5;
}

/* ===== ВЫСТАВКИ ===== */
.exhibitions-list {
    max-width: 900px;
    margin: 0 auto;
}
.exhibition-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}
.exhibition-item:first-child {
    border-top: 1px solid var(--border);
}
.exhibition-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-dark);
}
.exhibition-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.exhibition-place {
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.exhibition-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}
.text-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}
.text-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .exhibition-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ===== ВНЕШНИЕ ССЫЛКИ ===== */
.external-links {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.external-links-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}
.external-links-list {
    list-style: none;
    padding: 0;
}
.external-links-list li {
    margin-bottom: 12px;
}
.external-links-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.external-links-list a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--gold);
}
.external-links-list a strong {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}
.external-links-list a span {
    font-size: 0.8rem;
    color: var(--gold-dark);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .external-links-list a {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}