/* Shared share-button styles for the post detail pages (main + Jamnagar). */

.socialURLIconsWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.socialURLIcons {
    /* box-sizing + fixed height keep the <button> identical to the <a> tags */
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: opacity .2s ease, transform .2s ease;
}

.socialURLIcons:hover,
.socialURLIcons:focus {
    color: #fff;
    opacity: .85;
    text-decoration: none;
    transform: translateY(-2px);
}

.socialURLIcons i {
    font-size: inherit;
    line-height: 1;
}

@media (max-width: 575px) {
    .socialURLIconsWrap {
        gap: 6px;
    }

    .socialURLIcons {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
