.manufacturer-info {
    margin: 32px 0;
}

.manufacturer-info-header {
    text-align: center;
    margin-bottom: 24px;
}

.manufacturer-info-title-main {
    font-size: 24px;
    font-weight: 600;
    color: #222228;
    line-height: 1.3;
    margin-bottom: 8px;
}

.manufacturer-info-desc {
    font-size: 14px;
    color: #717182;
}

.manufacturer-info-container {
    display: grid;
    grid-template-columns: 1fr; /* mobile */
    gap: 24px;
    width: 100%; /* растягиваем на ширину родительского контейнера */
}

.manufacturer-info-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow .3s ease, transform .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.manufacturer-info-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.manufacturer-info-item-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Иконки и их цвета */
.manufacturer-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f7f7f9;
}

.manufacturer-info-icon svg {
    width: 24px;
    height: 24px;
}

.icon-blue { color: #3b82f6; }
.icon-green { color: #16a34a; }
.icon-emerald { color: #10b981; }
.icon-red { color: #ef4444; }
.icon-purple { color: #9333ea; }
.icon-orange { color: #f97316; }

.manufacturer-info-content { flex: 1; min-width: 0; }

.manufacturer-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #222228;
    line-height: 1.3;
    margin-bottom: 4px;
}

.manufacturer-info-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.manufacturer-info-link { color: #3b82f6; text-decoration: none; }
.manufacturer-info-link:hover { text-decoration: underline; }

/* Планшет: 2 колонки */
@media (min-width: 768px) {
    .manufacturer-info-container { grid-template-columns: repeat(2, 1fr); }
}

/* Десктоп: 3 колонки */
@media (min-width: 1100px) {
    .manufacturer-info-container { grid-template-columns: repeat(3, 1fr); }
}