/**
 * Fullwidth Feature Layout Styles
 * Minimal base styles - customize as needed
 */

.ga26-fullwidth-feature {
    width: 100%;
    position: relative;
}

.ga26-fullwidth-feature__image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 230px;
}

.ga26-fullwidth-feature__headline-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    z-index: 1;
}

.ga26-fullwidth-feature__headline {
    font-family: 'Grack', sans-serif !important;
    font-style: normal;
    font-weight: 500;
    font-size: 72px !important;
    letter-spacing: .5px;
    line-height: 1.2em !important;
    text-transform: uppercase;
    text-align: center;
    color: #fff !important;
    margin: 0;
    max-width: 1200px;
    text-shadow: 0px 0px 20px #00000085;
    padding-bottom: 0px;
}

/* Responsive */
@media (max-width: 768px) {
    .ga26-fullwidth-feature__headline-wrapper {
        padding: 10%;
    }
    
    .ga26-fullwidth-feature__headline {
        font-size: 36px !important;
    }
}