/**
 * cta_tour.css
 */
.gh-cta-tour {
    background-color: var(--gh-color-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gh-cta-tour__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 38, .82);
}
.gh-cta-tour__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.gh-cta-tour__heading {
    color: var(--gh-color-white);
    margin-bottom: var(--gh-space-4);
}
.gh-cta-tour__text {
    color: rgba(255,255,255,.85);
    font-size: var(--gh-font-size-lg);
    margin-bottom: var(--gh-space-8);
    line-height: var(--gh-line-height-relaxed);
}
.gh-cta-tour__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--gh-space-2);
    font-size: var(--gh-font-size-lg);
    padding: var(--gh-space-4) var(--gh-space-10);
    box-shadow: var(--gh-shadow-md);
    transition:
        transform var(--gh-transition),
        box-shadow var(--gh-transition),
        background-color var(--gh-transition);
}
.gh-cta-tour__btn:hover,
.gh-cta-tour__btn:focus {
    transform: translateY(-2px);
    box-shadow: var(--gh-shadow-lg);
}
.gh-cta-tour__btn-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

