/* === СТРАНИЦА УСЛУГИ === */

.services-hero { background: var(--white); padding: 50px 0 10px; }

.services-section {
    background: var(--white);
    padding-top: 0;
    padding-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-img {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-img img { width: 100%; height: 100%; object-fit: cover; }

.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; line-height: 1.5; color: var(--gray); margin: 0; }


@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}