/* ============================================
   EXHIBITORS LIST PAGE (СПИСОК УЧАСТНИКОВ)
   ============================================ */

.exhibitors-list-page {
    padding: 20px 0;
}

.exhibitors-list-wrapper {
    padding: 50px;
    position: relative;
    overflow: hidden;
}

/* Фоновая надпись */
.exhibitors-list-background {
    position: absolute;
    top: 30px;
    right: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: var(--nav-green-1, #1BBF84);
    opacity: 0.06;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Заголовок */
.exhibitors-list-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.exhibitors-list-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
}

.exhibitors-list-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.8);
}

/* Сетка участников */
.exhibitors-list-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* Карточка участника */
.exhibitor-list-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 191, 132, 0.15);
}

.exhibitor-list-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    border-color: var(--nav-green-1, #1BBF84);
}

/* Логотип */
.exhibitor-list-logo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.exhibitor-list-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exhibitor-list-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 191, 132, 0.15);
    color: var(--nav-green-1, #1BBF84);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

/* Название */
.exhibitor-list-name {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-word;
}

/* Стрелка */
.exhibitor-list-arrow {
    font-size: 24px;
    color: var(--nav-green-1, #1BBF84);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.exhibitor-list-card:hover .exhibitor-list-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Футер со ссылкой */
.exhibitors-list-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.exhibitors-list-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--nav-green-1, #1BBF84);
    text-decoration: none;
    transition: all 0.3s ease;
}

.exhibitors-list-link:hover {
    gap: 15px;
    color: #2be6a3;
}

.link-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.exhibitors-list-link:hover .link-arrow {
    transform: translateX(5px);
}

/* ========== АДАПТИВ ДЛЯ МОБИЛОК ========== */
@media (max-width: 1200px) {
    .exhibitors-list-wrapper {
        padding: 40px;
    }
    .exhibitors-list-background {
        font-size: 70px;
        right: 30px;
        top: 20px;
    }
    .exhibitors-list-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .exhibitors-list-wrapper {
        padding: 40px;
    }
    .exhibitors-list-background {
        font-size: 60px;
        opacity: 0.04;
    }
    .exhibitors-list-title {
        font-size: 28px;
    }
    .exhibitors-list-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .exhibitor-list-logo {
        width: 80px;
        height: 80px;
    }
    .exhibitor-list-name {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .exhibitors-list-page {
        padding: 20px 0;
    }
    .exhibitors-list-wrapper {
        padding: 30px;
    }
    .exhibitors-list-background {
        font-size: 40px;
        right: 20px;
        top: 15px;
    }
    .exhibitors-list-title {
        font-size: 24px;
    }
    .exhibitors-list-subtitle {
        font-size: 16px;
    }
    .exhibitors-list-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .exhibitor-list-card {
        padding: 15px 20px;
        gap: 15px;
    }
    .exhibitor-list-logo {
        width: 65px;
        height: 65px;
    }
    .exhibitor-list-name {
        font-size: 14px;
        line-height: 1.3;
    }
    .exhibitor-list-arrow {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .exhibitors-list-wrapper {
        padding: 20px;
    }
    .exhibitors-list-background {
        font-size: 28px;
        right: 15px;
        top: 10px;
    }
    .exhibitors-list-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .exhibitors-list-subtitle {
        font-size: 14px;
    }
    .exhibitor-list-card {
        padding: 12px 15px;
        gap: 12px;
    }
    .exhibitor-list-logo {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    .exhibitor-list-logo-placeholder {
        font-size: 18px;
    }
    .exhibitor-list-name {
        font-size: 12px;
        line-height: 1.3;
    }
    .exhibitor-list-arrow {
        font-size: 16px;
    }
    .exhibitors-list-link {
        font-size: 14px;
    }
    .link-arrow {
        font-size: 16px;
    }
}

/* Для очень маленьких экранов (до 400px) */
@media (max-width: 400px) {
    .exhibitors-list-wrapper {
        padding: 15px;
    }
    .exhibitor-list-card {
        padding: 10px 12px;
        gap: 10px;
    }
    .exhibitor-list-logo {
        width: 45px;
        height: 45px;
    }
    .exhibitor-list-name {
        font-size: 11px;
    }
    .exhibitor-list-arrow {
        font-size: 14px;
    }
}