body {
    background: yellow;
}

.gswa-gm-member-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin: 30px 0;
   
}

.gswa-gm-member-card {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
     
}

.gswa-gm-member-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.gswa-gm-member-card h3 {
    margin-top: 15px;
    font-size: 24px;
    
    color: #003366;
   
}



/* Target the specific general member block elements */
.gswa-gm-member{
     
  line-height: 1.5;       /* Tighter line box spacing */
    margin-top: 4px;        /* Small top gap between lines */
    margin-bottom: 4px;  /* Small bottom gap between lines */
    font-weight:600;   /* sami bold 600, bold 700, normal 400*/
}




/* Optional: Make the ID stand out slightly more like your image */


/*--End--Adding--*/

@media (max-width: 992px) {
    .gswa-gm-member-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gswa-gm-member-grid {
        grid-template-columns: 1fr;
    }
}
