/*
 * Page hero buttons rendered by templates/template-fullwidth.php.
 * Controlled by the "Show hero buttons" meta box per page.
 */

.hero-buttons {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.hero-btn-transparent {
    box-sizing: border-box !important;
    transition: color .2s ease !important;
    background: transparent !important;
    border: 2px solid #d1b06b !important;
    color: #fff !important;
}

.hero-btn-transparent:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #d1b06b !important;
}

.call-now-hero-button {
    transition: .2s ease !important;
    background: linear-gradient(135deg, #d1b06b 0%, #91764d 100%);
}
