.share-this {
    display: flex;
    justify-content: flex-start;
    gap: .25rem;
}

.share-platforms {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.share-platform {
    display: flex;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #007a53; 
    border-radius: 50%;
    text-decoration: none;
}

.share-link svg {
    fill: white; 
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .share-this {
        justify-content: center;
    }

    #share-this-article {
        text-align: center;
    }

    .share-platforms {
        gap: .5rem;
    }

    .share-link {
        width: 40px;
        height: 40px;
    }

    .share-link svg {
        width: 24px;
        height: 24px;
    }
}