.ccm-page .socials-gallery {
    width: 100%;
}

.ccm-page .socials-gallery .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 40px 0;

}

.ccm-page .social-item {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    margin-bottom: 15px;
}

.ccm-page .social-image-container {
    position: relative;
    border: 1px solid #fff;
}

.ccm-page .social-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.ccm-page .social-icon-overlay {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
}

.ccm-page .social-icon-diamond {
    width: 60px;
    height: 60px;
    background-color: #7BC142;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 2px solid #fff;
}

.ccm-page .social-icon-diamond i {
    color: white;
    font-size: 28px;
    transform: rotate(-45deg);
}

.ccm-page .socials-gallery .follow-us {
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
}

.ccm-page .socials-gallery .follow-us a {
    color: white;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ccm-page .social-item {
        flex: 0 0 calc(33.33% - 15px);
    }
}

@media (max-width: 768px) {
    .ccm-page .social-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .ccm-page .social-item {
        flex: 0 0 100%;
    }
}