/* Icon Block Frontend Styles */

/* Icon Block - inline element that scales with font-size */
.fireweed-icon-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* When centered, use display table to center itself */
.fireweed-icon-block.aligncenter {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.fireweed-icon-block svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Icon Block Link Styles */
a.fireweed-icon-block {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a.fireweed-icon-block:hover {
    opacity: 0.8;
}

