.related-posts__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin: 30px 0;
    background-color: #30472f;
    padding: 40px 0;
    border-radius: 8px;
    width: 100%;
    color: #fff;
    font-weight: 300 !important;

    h3 {
        font-size: 20px;
        text-transform: uppercase;
        font-family: "GothamNarrow-Medium", sans-serif;
        font-weight: 550;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 1024px) {
    .related-posts__socials {
        flex-direction: column;
        gap: 10px;
        margin: 0 0;


        h3 {
            text-align: center;
            max-width: 80%;
        }
    }
}