/* Basic */
.paragraph--type-basic img, .paragraph--type--basic img {
    max-width: 100%;
    margin: 0 0 1em;
    height: auto;
}

/* Documents */
.document {
    padding: 1rem;
    background: #eef6fb;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.document a {
    background-color: white;
    border: 1px solid var(--gray-light);
    padding: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--gray-base);
    display: flex;
    border-radius: 4px;
    align-items: center;
    gap: 1rem;
}

.document a:hover,
.document a:focus-visible {
    color: var(--blue-dark);
    text-decoration: underline;
}

.document a.file-download:before {
    font-family: "icomoon";
    content: "\e95e";
    background: #286c9b;
    color: white;
    height: 40px;
    width: 40px;
    font-size: 24px;
    display: inline-flex;
    line-height: 40px;
    justify-content: center;
    align-items: center;
}

/* slideshow */
.splide--optionset--slideshow {
    background-color: var(--blue-light);
    padding: 1rem;
    margin-bottom: 2rem;
}

.splide--optionset--slideshow .splide__slide {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splide--optionset--slideshow .slide__caption {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 1rem;
    background: white;
    color: black;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
}