

/* Start:/local/templates/aspro_optimus/components/bitrix/news.list/dealers_cards/style.css?17721293062897*/
/* Контейнер дилеров */
.dealers-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.dealers-wrapper * {
    box-sizing: border-box;
}

/* Сетка карточек */
.dealers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .dealers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .dealers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Карточка дилера */
.dealer-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.dealer-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dealer-card-inner {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Логотип */
.dealer-logo {
    text-align: center;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.dealer-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.dealer-logo-placeholder i {
    font-size: 40px;
    color: #999;
}

/* Информация */
.dealer-info {
    flex: 1;
}

.dealer-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
    min-height: 50px;
}

.dealer-address {
    display: flex;
    align-items: flex-start;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    gap: 8px;
}

.dealer-address i {
    color: #f27f00;
    margin-top: 2px;
    flex-shrink: 0;
}

.dealer-address span {
    flex: 1;
}

/* Телефоны */
.dealer-phones {
    margin: 15px 0;
}

.dealer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.dealer-phone:last-child {
    margin-bottom: 0;
}

.dealer-phone i {
    color: #f27f00;
    flex-shrink: 0;
}

.dealer-phone a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dealer-phone a:hover {
    color: #f27f00;
}

/* Кнопка сайта */
.dealer-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.dealer-actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.dealer-actions .button i {
    font-size: 12px;
}

/* End */
/* /local/templates/aspro_optimus/components/bitrix/news.list/dealers_cards/style.css?17721293062897 */
