/* ============================================================
   Блок «Каталог по типу запчасти» на главной (grid 8 типов)
   ============================================================ */
.ct-section { max-width: 1400px; margin: 0 auto; padding: 90px 0 0; }
.ct-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 12px; }
.ct-head h2 { margin: 0; font-size: 40px; font-weight: 700; line-height: 1.1; }
.ct-all {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 600; color: #D31E23; padding-bottom: 6px;
}
.ct-all:hover { color: #C42B30; }
.ct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.ct-card {
    display: block; border: 1px solid #D31E23; border-radius: 14px;
    padding: 26px 24px 24px; background: #ffffff; transition: all .15s;
}
.ct-card:hover { border-color: #D31E23; box-shadow: 0 12px 28px rgba(6,7,19,0.08); color: #060713; }
.ct-card-icon { width: 40px; height: 40px; }
.ct-card-name { margin-top: 20px; font-size: 19px; font-weight: 600; line-height: 1.25; color: #060713; }
.ct-card-count { margin-top: 8px; font-size: 14px; color: #8A8B94; }

@media (max-width: 900px) {
    .ct-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-head h2 { font-size: 28px; }
}
