/**
 * eJobs Preferred Sources — button styles.
 *
 * Anchor wraps an <img> of the bundled SVG (or custom uploaded image).
 * The SVGs are exported clean from Figma at their intended display size
 * (~240×40 wide, ~?×? compact) so no CSS scaling is needed and they
 * stay sharp. CSS only enforces max-width as a safety cap on tiny viewports.
 */

/* Reset + kill anchor decorations from aggressive content-link themes */
.eps-button,
.eps-button:hover,
.eps-button:focus,
.eps-button:active,
.eps-button:visited {
    display: inline-block;
    line-height: 0;
    text-decoration: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    background: none !important;
    background-image: none !important;
    -webkit-tap-highlight-color: transparent;
}

.eps-button::before,
.eps-button::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.eps-button img {
    display: block;
    height: auto;
    max-width: 100%;
}

.eps-button:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 4px;
    border-radius: 12px;
}

/* Alignment wrapper (shortcode/helper/auto-inject; block uses WP align) */
.eps-wrap {
    margin: 16px 0;
}
.eps-align-left   { text-align: left; }
.eps-align-center { text-align: center; }
.eps-align-right  { text-align: right; }
