.sb-hero-scope .sb-hero-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0 30px;
}

.sb-hero-scope .sb-card {
    background: var(--sb-soft, #FFFFFF);
    /* Standardized White Card */
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    transition: .25s ease;
    border: 1px solid rgba(58, 90, 64, 0.1);
}

.sb-hero-scope .sb-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

/* Image container now just holds the <img> */
.sb-hero-scope .sb-img-container {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 14px auto;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--sb-bg-sage, #EFF5F1);
}

/* New CSS for the <img> tag */
.sb-hero-scope .sb-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle edge fade (vignette) is now on the container */
.sb-hero-scope .sb-img-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, 0.12) 78%,
            rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}


.sb-hero-scope .sb-title-md {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sb-green, #3A5A40);
    margin: 6px 0;
    letter-spacing: -0.01em;
}

.sb-hero-scope .sb-text {
    font-size: .85rem;
    line-height: 1.4;
    margin-bottom: 12px;
    padding: 0 6px;
    color: var(--sb-text-light, #5C6B73);
}

.sb-hero-scope .sb-btn-primary {
    margin-top: auto;
    width: 100%;
    padding: 10px 0;
    border-radius: 40px;
    background: var(--sb-green, #3A5A40);
    color: #fff !important;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sb-hero-scope .sb-btn-primary:hover {
    background: var(--sb-green-light, #588157);
}

/* Responsive */
@media(max-width:900px) {
    .sb-hero-scope .sb-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media(max-width:600px) {
    .sb-hero-scope .sb-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}