/**
 * Callout Widget Styles
 */

.callout-widget-container {
    padding: 2rem 2.5rem;
    background: #0083a4;
    /* border: 2px solid #0083a4; */
    border-radius: 8px;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out;
}

.callout-widget-container.hover-active {
    box-shadow: inset 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.callout-title {
    margin: 0 0 0.75rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: white;
}

.callout-subtitle {
    margin: 0 0 1rem 0;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
}

.callout-button {
    display: inline-block;
    color: #fff;
    padding: 1.5rem 2rem;
    background-color: #000;
    transition: background-color 0.2s ease-in-out;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.callout-widget-container.hover-active .callout-button {
    background-color: #003644;
}

a.callout-button:active, a.callout-button:visited {
	color: #ffffff !important;
}

.callout-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    text-decoration: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


.callout-footnote {
    margin: 1rem 0 0 0;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    opacity: 0.75;
    font-style: italic;
}
