/* Основные стили блока */
.bcp-companies-block {
    max-width: 1520px;
    margin: 100px auto 0;
    position: relative;
    z-index: 2;
    padding: 20px 85px 0;
}

.bcp-title {
    text-align: left;
    margin: 0 0 36px;
    font-size: 32px;
    color: #fff;
    padding-left: 20px;
}

/* Сетка компаний */
.bcp-companies-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Общие стили рядов */
.bcp-companies-row {
    display: grid;
    gap: 36px;
}

/* Десктопная версия */
.bcp-desktop-row-1 {
    grid-template-columns: 2fr 1fr;
}

.bcp-desktop-row-2 {
    grid-template-columns: repeat(3, 1fr);
}

/* Мобильная версия */
.bcp-mobile-row-1 {
    display: none;
}

.bcp-mobile-row-2 {
    display: none;
    grid-template-columns: repeat(2, 1fr);
}

/* Карточка компании */
.bcp-company-card {
    background: #fff;
    border-radius: 32px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: #0c0c0c;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 290px;
    text-decoration: none;
}

.bcp-company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Шапка карточки */
.bcp-company-header {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Мобильный вариант карточки */
.bcp-company-card.mobile-compact {
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.bcp-company-card.mobile-compact .bcp-company-header {
    flex-direction: column;
    height: auto;
    margin-bottom: 0;
    text-align: center;
}

.bcp-company-card.mobile-compact .bcp-company-logo {
    margin-bottom: 15px;
}

/* Логотип */
.bcp-company-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.bcp-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Рейтинг */
.bcp-rating-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.bcp-rating-stars {
    font-size: 24px;
    line-height: 1;
    display: flex;
    position: relative;
    gap: 14px;
}

.bcp-star-full {
    color: #FFD700 !important;
}

.bcp-star-empty {
    color: #e0e0e0 !important;
}

.bcp-star-partial {
    position: relative;
    display: inline-block;
}

.bcp-star-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.bcp-rating-value {
    margin-left: 5px;
    margin-top: 5px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #0c0c0c;
    position: relative;
    z-index: 2;
}

/* Описание и заголовок */
.bcp-company-description {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0c0c0c !important;
    flex-grow: 1;
}

.bcp-company-title {
    font-size: 26px;
    font-weight: 400;
    margin-top: auto;
    margin-bottom: 0;
    line-height: 1.2;
    color: #0c0c0c;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .bcp-companies-block {
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .bcp-companies-grid {
        gap: 20px;
    }
    
    /* Скрываем десктопные ряды */
    .bcp-desktop-row-1,
    .bcp-desktop-row-2 {
        display: none !important;
    }
    
    /* Показываем мобильные ряды */
    .bcp-mobile-row-1,
    .bcp-mobile-row-2 {
        display: grid;
        gap: 20px;
    }
    
    /* Общие стили карточек */
    .bcp-company-card {
        height: auto;
        min-height: 200px;
        padding: 20px;
    }
    
    /* Компактный вид для обычных карточек */
    .bcp-mobile-row-2 .bcp-company-card {
        padding: 15px;
    }
    
    /* Скрываем описание и заголовок для обычных карточек */
    .bcp-mobile-row-2 .bcp-company-description,
    .bcp-mobile-row-2 .bcp-company-title {
        display: none;
    }
    
    /* Центрируем контент для компактных карточек */
    .bcp-mobile-row-2 .bcp-company-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .bcp-mobile-row-2 .bcp-company-header {
        flex-direction: column;
        height: auto;
        margin-bottom: 0;
    }
    
    .bcp-mobile-row-2 .bcp-company-logo {
        margin-bottom: 15px;
    }
    
    /* Стили для топ-1 компании */
    .bcp-mobile-row-1 .bcp-company-card {
        height: 220px;
    }
    
    .bcp-mobile-row-1 .bcp-company-title {
        font-size: 22px;
        display: block !important;
    }
    
    .bcp-mobile-row-1 .bcp-company-description {
        display: none;
    }
    
    .bcp-rating-stars,
    .bcp-rating-value {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bcp-companies-block {
        padding: 0 15px;
    }
    
    .bcp-company-card {
        min-height: 180px;
        padding: 15px;
    }
    
    .bcp-company-logo {
        width: 50px;
        height: 50px;
    }
    
    .bcp-mobile-row-1 .bcp-company-title {
        font-size: 20px;
    }

    .bcp-mobile-row-1 .bcp-company-card {
        height: auto;
    }

    .bcp-rating-stars {
        gap: 0px;
    }

    .bcp-rating-stars, .bcp-rating-value {
        font-size: 17px;
    }
}