/**
 * intro_band.css
 */
.gh-intro-band {
    background-color: var(--gh-color-primary);
    color: var(--gh-color-white);
    text-align: center;
    position: relative;
}
.gh-intro-band--has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gh-intro-band--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(46, 83, 57, .85);
}
.gh-intro-band__inner { position: relative; max-width: 800px; margin-left: auto; margin-right: auto; }
.gh-intro-band__heading {
    color: var(--gh-color-white);
    margin-bottom: var(--gh-space-6);
}
.gh-intro-band__text { color: rgba(255,255,255,.85); font-size: var(--gh-font-size-lg); }
.gh-intro-band__text p:last-child { margin-bottom: 0; }
