/* =========================
   SERVICES – EDITORIAL GRID
========================= */

.services-editorial {
    background-color: #ffffff;
    text-align: center;
}

.services-editorial h2 {
    margin-bottom: 3.5rem;
}

/* Grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Card */
.service-card {
    background-color: #f0f0f0;
    padding: 2.8rem 2rem;
    border-radius: 4px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
    font-size: 32px;
    color: #c49a4a;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.service-card a {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--deep-wine);
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
