.creators-main {
    position: relative;
    margin: 0 auto;
    margin-top: 80px;
}

/* Хлебные крошки и заголовок */
.page-header {
    margin-bottom: 60px;
    text-align: left;
    padding-left: 106px;
}

.breadcrumb-creators {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 40px;
    color: #FFFFFF;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.creators-heading {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
}

/* Список творцов — контейнер для 4 блоков */
.creators-list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Карточка творца: общий размер 1592x476 */
.creator-card {
    width: 100%;
    height: 476px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.65);
}

/* Левая часть — фотография 849x476 */
.creator-photo {
    width: 55vw;
    aspect-ratio: 1/2;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #2C365A;
}

.creator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.creator-card:hover .creator-img {
    transform: scale(1.02);
}

/* Правая часть — информация о художнике (прямоугольник) */
.creator-info {
    flex: 1;
    background: linear-gradient(135deg, rgba(30, 35, 55, 0.95) 0%, rgba(20, 25, 45, 0.98) 100%);
    backdrop-filter: blur(4px);
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Плейсхолдер для информации (содержимое, которое можно будет заменить) */
.creator-info-placeholder {
    width: 100%;
}

.creator-name-placeholder {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #FFFFFF;
    padding-left: 20px;
}

.creator-bio-placeholder {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.5;
    color: #E0E0E0;
    margin-bottom: 30px;
    opacity: 0.9;
}

.creator-detail-link {
    font-family: 'GarciaMarquez', 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.creator-detail-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.6);
}

.after-creators {
    width: 1518px;
    margin: 60px auto 0;
    height: 20px;
}

/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ (по аналогии с главной страницей) ========== */

/* Для планшетов и небольших ноутбуков (до 1024px) */
@media (max-width: 1024px) {
    .creators-main {
        width: 90%;
        margin-top: 40px;
    }

    .page-header {
        padding-left: 20px;
        margin-bottom: 40px;
    }

    .breadcrumb-creators {
        font-size: 28px;
    }

    .creators-heading {
        font-size: 48px;
    }

    .creators-list {
        width: 100%;
        gap: 30px;
    }

    .creator-card {
        width: 100%;
        height: auto;
        flex-direction: column;
        border-radius: 24px;
    }

    .creator-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 849 / 476;
    }

    .creator-info {
        padding: 30px 35px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .creator-name-placeholder {
        font-size: 34px;
        margin-bottom: 18px;
        padding-left: 16px;
    }

    .creator-bio-placeholder {
        font-size: 18px;
        max-width: 100%;
    }

    .creator-detail-link {
        font-size: 18px;
        padding: 10px 24px;
    }

    .footer {
        width: 90%;
        padding: 40px 30px 25px;
        margin-top: 60px;
    }
}

/* Для мобильных телефонов (до 768px) */
@media (max-width: 768px) {
    .creators-main {
        margin-top: 30px;
    }

    .page-header {
        padding-left: 15px;
        margin-bottom: 30px;
    }

    .breadcrumb-creators {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .creators-heading {
        font-size: 36px;
    }

    .creators-list {
        gap: 25px;
    }

    .creator-card {
        border-radius: 20px;
    }

    .creator-info {
        padding: 25px 20px;
    }

    .creator-name-placeholder {
        font-size: 28px;
        padding-left: 12px;
        margin-bottom: 14px;
    }

    .creator-bio-placeholder {
        font-size: 16px;
        margin-bottom: 22px;
        line-height: 1.45;
    }

    .creator-detail-link {
        font-size: 16px;
        padding: 8px 20px;
    }
}

/* Для очень маленьких телефонов (до 480px) */
@media (max-width: 480px) {
    .breadcrumb-creators {
        font-size: 18px;
    }

    .creators-heading {
        font-size: 28px;
    }

    .creator-name-placeholder {
        font-size: 22px;
        padding-left: 10px;
    }

    .creator-bio-placeholder {
        font-size: 14px;
    }

    .creator-detail-link {
        font-size: 14px;
        padding: 6px 16px;
    }

    .creator-info {
        padding: 20px 15px;
    }
}

/* Для альбомной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .creator-card {
        flex-direction: row;
    }

    .creator-photo {
        width: 50%;
        aspect-ratio: auto;
        height: auto;
    }

    .creator-info {
        width: 50%;
        padding: 20px;
    }

    .creator-name-placeholder {
        font-size: 22px;
    }

    .creator-bio-placeholder {
        font-size: 14px;
    }
}