/* CSS Variables */
:root {
    --gs-primary-color: #15243e;
}

/* Global style */
.gs-block-container {
    position: relative;
    width: 90%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
@media only screen and (max-width: 980px) {
    .gs-block-container {
        width: 80%;
    }
}
@media only screen and (max-width: 767px) {
    .gs-block-container {
        width: 90%;
    }
}
.gs-image img {
    width: 100%;
    margin-bottom: 15px;
}
.gs-image.no-bottom-spacing {
    display: flex;
}
.gs-image.no-bottom-spacing img {
    margin-bottom: 0;
}
.gs-image figcaption {
    font-size: 12px;
    line-height: 1.07;
}
.gs-background-image {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.gs-below-spacing-none {
    margin-bottom: 0;
}

/* Block container */
.gs-block-container.gs-block-container-wide {
    max-width: 960px;
}
.gs-block-container.gs-block-container-extra-wide {
    max-width: 1680px;
}
.gs-block-container.gs-block-container-fullwidth {
    width: 100%;
    max-width: 100%;
}
.gs9-theme .gs-block-container.gs-below-spacing-none {
    margin-bottom: -60px;
}

/* Text block and Split Column Text block */
.gs-text-block p,
.gs-split-column-text-block p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.38;
    padding-bottom: 0;
}
.gs-text-block p:last-child,
.gs-split-column-text-block p:last-child {
    margin-bottom: 0;
}
.gs-text-block a,
.gs-split-column-text-block a {
    color: var(--gs-primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--gs-primary-color);
    -webkit-transition: border-color .2s ease-out;
    transition: border-color .2s ease-out;
}
.gs-text-block a:hover,
.gs-split-column-text-block a:hover {
    border-color: transparent;
}