/*
Theme Name:   Neve Child
Theme URI:    https://dantondevelopments.com.au/
Template:     neve
Author:       Danton Developments
Description:  Child theme of Neve. Holds site-specific CSS/PHP overrides.
Version:      1.0.0
Text Domain:  neve-child
*/

/* Match WP core social-link block styling for header/footer icons site-wide.
   Needed because the homepage doesn't contain a Gutenberg block, so WP core
   skips enqueueing the social-links block stylesheet on that template. */
.wp-block-social-links {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
.wp-social-link,
.wp-block-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 8px 8px 0;
    border-radius: 9999px;
    background-color: #0866ff;
    color: #fff;
    transition: transform .1s ease;
}
.wp-social-link a,
.wp-block-social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: currentColor;
    fill: currentColor;
    text-decoration: none;
}
.wp-social-link svg,
.wp-block-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.wp-social-link:hover,
.wp-block-social-link:hover {
    transform: scale(1.1);
}
.wp-block-social-link-label.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}
