.pc-section {
    padding: 40px 0;
}

.pc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card */
.pc-card {
    background: #EAF0E1;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2B663D;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}
.pc-card:hover::before  { opacity: 1; }
.pc-card:hover          { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(43,102,61,0.25); }
.pc-card > *            { position: relative; z-index: 1; }

/* Image circle */
.pc-card__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.pc-card:hover .pc-card__img { transform: scale(1.08); }
.pc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pc-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: #c8dbb0;
}

/* Text */
.pc-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #1a2e1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.pc-card:hover .pc-card__title { color: #ffffff; }

.pc-card__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #121212;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.pc-card:hover .pc-card__desc { color: rgba(255,255,255,0.75); }

/* Link */
.pc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2B663D;
    text-decoration: none;
    transition: color 0.3s ease;
}
.pc-card:hover .pc-card__link { color: #99C453; }

/* Responsive */
@media ( max-width: 1100px ) {
    .pc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media ( max-width: 700px ) {
    .pc-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
}
@media ( max-width: 420px ) {
    .pc-grid { grid-template-columns: 1fr; }
}