/* --- Servizi moderni (compatibile Zooy) --- */
.pc-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.pc-col-3 {
    grid-column: span 12;
}

.pc-col-9 {
    grid-column: span 12;
}

@media (min-width: 992px) {
    .pc-col-3 {
        grid-column: span 3;
    }

    .pc-col-9 {
        grid-column: span 9;
    }
}

.pc-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
}

.pc-sidebar h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.pc-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-side-list li {
    margin: 0;
}

.pc-side-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: .2s ease;
}

.pc-side-link:hover {
    background: #f2f2f2;
}

.pc-side-link.active {
    background: rgba(255, 153, 0, .15);
    font-weight: 600;
    color: #111;
}

.pc-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .05);
}

@media (max-width: 576px) {
    .pc-card {
        grid-template-columns: 1fr;
    }
}

.pc-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eee;
}

.pc-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pc-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.35;
}

.pc-desc {
    font-size: .92rem;
    color: #555;
}

/* Spaziature utili */
.gap-4>*+* {
    margin-top: 1rem;
}

@media (min-width: 576px) {
    .gap-4>*+* {
        margin-top: 1.25rem;
    }
}