.sc-section {
    /* background: #EAF0E1; */
    padding: 20px 0px;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Card */
.sc-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: solid 1px  #EAF0E1;
}
.sc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(43, 102, 61, 0.15);
}

/* Image */
.sc-card__img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #d0dcc8; /* fallback if no image */
}
.sc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sc-card:hover .sc-card__img img {
    transform: scale(1.07);
}
.sc-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 31, 0.55) 0%, transparent 60%);
}

/* Body */
.sc-card__body {
    padding: 28px;
}
.sc-card__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #99C453;
    margin-bottom: 10px;
}
.sc-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a2e1f;
    margin-bottom: 12px;
}
.sc-card__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #121212;
    line-height: 1.7;
    margin-bottom: 20px;
}
.sc-card__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2B663D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.sc-card__link:hover {
    gap: 10px;
}

/* Responsive */
@media ( max-width: 900px ) {
    .sc-grid { grid-template-columns: 1fr 1fr; }
    .sc-section { padding: 60px 24px; }
}
@media ( max-width: 580px ) {
    .sc-grid { grid-template-columns: 1fr; }
}