/* Основной контейнер страницы художника */
.artist-page {
    width: var(--content-width);
    margin: 0 auto;
    position: relative;
    margin-top: 60px;   /* чтобы визуально отступить от шапки (шапка идёт отдельно) */
}

/* Убираем лишний верхний отступ, который был у exhibition-section на главной */
.artist-main {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

/* ----- МОЗАИЧНАЯ СЕТКА (4 фото) ----- */
.artwork-mosaic {
    position: relative;
    display: flex;
    gap: 4vh;          /* расстояние между левым и правым столбцом */
    margin-top: 4vh;
    flex-wrap: wrap;
    justify-content: center;
}

/* левая колонка (две картинки: первая и третья) */
/* правая колонка (две картинки: вторая и четвёртая) */
.mosaic-left, .mosaic-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* базовая стилизация для всех картинок работ */
.artwork-img {
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.artwork-img:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
}

/* точные размеры согласно ТЗ */
.img-1 {
    width: 38vw;
    aspect-ratio: 1/1;
}

.img-3 {
    width: 38vw;
    aspect-ratio: 2/1;
}

.img-2 {
    width: 38vw;
    aspect-ratio: 2/1;
}

.img-4 {
    width: 38vw;
    aspect-ratio: 1;
}

/* ----- БЛОК С ТЕКСТОМ (ПРАВАЯ ЧАСТЬ) ----- */
.artist-info {
    width: 100%;
    right: 0;
    top: 0;
    margin-top: 50px;
    padding: 20px 0 0 10px;
    background: transparent;
}

/* Верхняя строка: имя + иконки соцсетей */
.artist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

.artist-name {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.1;
}

/* иконки соцсетей (стиль как в футере, но чуть крупнее) */
.artist-socials {
    display: flex;
    gap: 18px;
    align-items: center;
}

.artist-social-icon {
    display: inline-flex;
    transition: transform 0.2s, opacity 0.2s;
}

.artist-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.artist-social-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

/* Контейнер для остального текста (биография, описание и т.д.) */
.artist-bio-placeholder {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 30px 28px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}

.bio-title {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    border-left: 4px solid #FFFFFF;
    padding-left: 18px;
}

.bio-text {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.5;
    color: #E0E0E0;
    margin-bottom: 25px;
}

.bio-placeholder-note {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #AAAAAA;
    font-style: italic;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255,255,255,0.3);
}

/* Адаптивность страницы художника: при уменьшении окна мозаика трансформируется */


@media (max-width: 1024px) {
    .img-1, .img-3 {
        width: 100%;
        max-width: 601px;
        height: auto;
    }
    .img-2, .img-4 {
        width: 100%;
        max-width: 638px;
        height: auto;
    }
    .mosaic-left, .mosaic-right {
        width: 100%;
        align-items: center;
    }
    .artwork-mosaic {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }
    .artist-info {
        margin-top: 40px;
    }
    .artist-name {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .artist-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .artist-name {
        font-size: 38px;
    }
    .bio-title {
        font-size: 24px;
    }
    .bio-text {
        font-size: 16px;
    }
    .artist-social-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .artist-name {
        font-size: 30px;
    }
    .bio-title {
        font-size: 20px;
    }
    .bio-text {
        font-size: 14px;
    }
    .artist-bio-placeholder {
        padding: 20px 18px;
    }
}