/* Основные стили контейнера */
.tc-container {
    max-width: 1520px;
    margin: 100px auto 0;
    padding: 20px 85px 0px 85px;;
    position: relative;
}

/* Карточка компании */
.tc-company-card {
    background: #fff;
    border-radius: 32px;
    display: flex;
    color: #0c0c0c;
    text-decoration: none;
    height: 340px;
    overflow: hidden;
    align-items: center;
}

/* Логотип компании */
.tc-company-logo {
    width: 220px;
    height: 220px;
    margin: 0 40px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.tc-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Контент компании */
.tc-company-content {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    height: 100%;
}

/* Название компании */
.tc-company-title {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #0c0c0c;
    display: -webkit-box;
    -webkit-line-clamp: initial;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Описание компании */
.tc-company-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #0c0c0c;
    display: -webkit-box;
    -webkit-line-clamp: initial;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Рейтинг (скрыт) */
.tc-rating-container {
    display: none;
}

.tc-rating-stars {
    font-size: 32px;
    line-height: 1;
    display: flex;
    position: relative;
    gap: 14px;
}

/* Стили для звезд */
.tc-star-full {
    color: #FFD700 !important;
}

.tc-star-empty {
    color: #e0e0e0 !important;
}

.tc-star-partial {
    position: relative;
    display: inline-block;
}

.tc-star-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.tc-rating-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #0c0c0c;
}

/* Адаптация для мобильных устройств */
@media (max-width: 1024px) {
    .tc-container {
        padding: 0px 20px 0px 20px;
    }

    .tc-company-card {
        flex-direction: column;
        height: auto;
        padding: 40px 0;
    }
    
    .tc-company-logo {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    
    .tc-company-content {
        padding: 0 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tc-company-title {
        -webkit-line-clamp: 2;
        font-size: 32px;
    }
    
    .tc-company-description {
        -webkit-line-clamp: 2;
        font-size: 18px;
    }
    
    .tc-company-logo {
        width: 180px;
        height: 180px;
    }
}