/*
	
	We recommend adding any custom CSS to this file as it won't be overitten during updates. CSS added to this file will also take priority over any of the CSS throughout the template.
	
*/
body.hw-latest-news-popup-open {
    overflow: hidden;
}

.hw-latest-news-popup[hidden] {
    display: none !important;
}

.hw-latest-news-popup {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box;
}

.hw-latest-news-popup__scrim {
    position: absolute;
    inset: 0;
    background: rgba(8, 22, 38, 0.84);
}

.hw-latest-news-popup__panel {
    position: relative;
    width: 80vw;
    max-width: none;
    max-height: calc(100vh - 40px);
    overflow: auto;
    background: #fff;
    color: #223;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
}

.hw-latest-news-popup__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    background: #f7941d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
}

.hw-latest-news-popup h2 {
    margin: 0 0 14px;
    color: #183a5c;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}

.hw-latest-news-popup__body {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}

.hw-latest-news-popup__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.hw-latest-news-popup__link {
    color: #336699;
    font-weight: 700;
    text-decoration: none;
    align-self: center;
}

.hw-latest-news-popup__button {
    border: 0;
    background: #f7941d;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: 6px;
}

@media (max-width: 575px) {
    .hw-latest-news-popup {
        align-items: flex-start !important;
        padding: 12px !important;
    }

    .hw-latest-news-popup__panel {
        max-height: calc(100vh - 24px);
        padding: 22px;
    }

    .hw-latest-news-popup__actions,
    .hw-latest-news-popup__link,
    .hw-latest-news-popup__button {
        width: 100%;
    }
}

.hw-latest-news-popup__logo {
    margin-bottom: 18px;
    text-align: center;
}

.hw-latest-news-popup__logo img {
    display: inline-block;
    max-width: 220px;
    height: auto;
}