.manray-volunteer-section {
    position: relative;
    padding: 110px 0 160px;
    background: linear-gradient(135deg, #f3f7fb 0%, #ffffff 50%, #f9effe 100%);
    overflow: hidden;
}

.manray-volunteer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/rainbow-big.png");
    background-repeat: no-repeat;
    background-position: left -120px bottom -120px;
    background-size: 620px auto;
    opacity: 0.25;
    pointer-events: none;
}

.manray-volunteer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.manray-volunteer-heading {
    margin-bottom: 48px;
}

.manray-volunteer-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #007dc4;
    margin-bottom: 12px;
}

.manray-volunteer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5f5f63;
}

.manray-volunteer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 28px;
    justify-items: center;
}

.manray-volunteer-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 0;
    box-shadow: 0 22px 50px rgba(0, 125, 196, 0.12);
    width: 100%;
    max-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.manray-volunteer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 125, 196, 0.18);
}

.manray-volunteer-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
}

.manray-volunteer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manray-volunteer-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3f3f43;
    text-transform: uppercase;
    padding: 10px;
    background: rgba(255, 255, 255, 0.65);
    /* backdrop-filter: blur(6px); */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.manray-volunteer-section .manray-volunteer-grid {
    scroll-snap-type: none;
}

.manray-volunteer-grid::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1200px) {
    .manray-volunteer-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 992px) {
    .manray-volunteer-grid {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
    }
}

@media (max-width: 576px) {
    .manray-volunteer-grid {
        grid-template-columns: minmax(200px, 1fr);
    }

    .manray-volunteer-section {
        padding: 80px 0 120px;
    }

    .manray-volunteer-title {
        font-size: 2.2rem;
    }

    .manray-volunteer-subtitle {
        font-size: 1rem;
    }
}