/**
 * "Pošaljite upit" link on the service cards.
 *
 * Mirrors the rules added to the theme's main.css, so the change works without
 * pasting that 134 KB file through the Theme File Editor. Loaded after main.css.
 */

.service-offering__text {
    margin: 0 0 18px;
}

.service-offering__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #646464;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* The mask image URL is injected from PHP — see the plugin's inline style. */
.service-offering__arrow {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: currentColor;
}

.service-offering__link:hover,
.service-offering__link:focus {
    color: var(--color-orange);
}

.service-offering:focus-within {
    background: #fff;
    box-shadow: 0 20px 40px 0 #001D081A;
    transform: translateY(-2px);
}
