/*!
 * CloudTart — Local Phosphor Icon shim
 * ---------------------------------------------------------
 * The theme originally loaded two Phosphor stylesheets from
 * unpkg.com (regular + bold) so a handful of arrow icons would
 * render. To eliminate every external network request, those
 * enqueues were removed and replaced by this small CSS file,
 * which renders the *exact* icons the theme uses via inline-SVG
 * mask images. No font, no external fetch.
 *
 * Icons covered (matches markup in front-page.php / page-about-us.php):
 *   .ph        .ph-arrow-up-right         (regular weight)
 *   .ph-bold   .ph-arrow-up-right         (bold weight)
 *   .ph-bold   .ph-arrow-down-right       (bold weight)
 *
 * If more Phosphor icons are introduced later, add their SVG path
 * to this file rather than re-enabling the CDN.
 */

.ph,
.ph-bold {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
}

/* arrow-up-right — regular weight (4px stroke equivalent) */
.ph.ph-arrow-up-right {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path fill='black' d='M204,64V168a4,4,0,0,1-8,0V73.66L66.83,202.83a4,4,0,0,1-5.66-5.66L190.34,68H96a4,4,0,0,1,0-8H200A4,4,0,0,1,204,64Z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path fill='black' d='M204,64V168a4,4,0,0,1-8,0V73.66L66.83,202.83a4,4,0,0,1-5.66-5.66L190.34,68H96a4,4,0,0,1,0-8H200A4,4,0,0,1,204,64Z'/></svg>");
}

/* arrow-up-right — bold weight (12px stroke equivalent) */
.ph-bold.ph-arrow-up-right {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path fill='black' d='M212,64V168a12,12,0,0,1-24,0V93l-95.51,95.49a12,12,0,0,1-17-17L171,76H96a12,12,0,0,1,0-24H200A12,12,0,0,1,212,64Z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path fill='black' d='M212,64V168a12,12,0,0,1-24,0V93l-95.51,95.49a12,12,0,0,1-17-17L171,76H96a12,12,0,0,1,0-24H200A12,12,0,0,1,212,64Z'/></svg>");
}

/* arrow-down-right — bold weight */
.ph-bold.ph-arrow-down-right {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path fill='black' d='M212,88V192a12,12,0,0,1-12,12H96a12,12,0,0,1,0-24h75L52.49,61.49a12,12,0,0,1,17-17L188,163V88a12,12,0,0,1,24,0Z'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><path fill='black' d='M212,88V192a12,12,0,0,1-12,12H96a12,12,0,0,1,0-24h75L52.49,61.49a12,12,0,0,1,17-17L188,163V88a12,12,0,0,1,24,0Z'/></svg>");
}
