/* FontAwesome Integration and Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* FontAwesome icons with healing green colors */
.fa, .fas, .far, .fab, .fal, .fad, .fat {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands";
    color: var(--link-color, #3d7c47);
}

/* Make FontAwesome icons work in markdown */
i[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 900;
    display: inline-block;
    margin: 0 0.3rem;
    color: var(--link-color, #3d7c47);
    transition: color 0.3s ease;
}

i[class*="fa-"]:hover {
    color: var(--accent-color, #7fb069);
}

/* Brand icons weight fix */
i[class*="fab"] {
    font-weight: 400;
}