.azur-media-content {
    --azur-media-content-media-width: 52%;
    --azur-media-content-media-order: 2;
    --azur-media-content-copy-order: 1;
    --azur-media-content-copy-align: flex-start;
    --azur-media-content-image-ratio: auto;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #f5f8fb;
}

.azur-media-content *,
.azur-media-content *::before,
.azur-media-content *::after {
    box-sizing: border-box;
}

.azur-media-content__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    width: 100%;
    min-width: 0;
    padding: 64px;
}

.azur-media-content__content {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: var(--azur-media-content-copy-align);
    order: var(--azur-media-content-copy-order);
    min-width: 0;
    max-width: 620px;
    text-align: left;
    overflow-wrap: anywhere;
}

.azur-media-content__media {
    display: flex;
    flex: 0 1 var(--azur-media-content-media-width);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: var(--azur-media-content-media-order);
    width: var(--azur-media-content-media-width);
    min-width: 0;
    max-width: 100%;
    margin: 0;
}

.azur-media-content__title {
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
    color: #0f2740;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.azur-media-content__description {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    color: #526a81;
    font-size: 17px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.azur-media-content__description > :first-child {
    margin-top: 0;
}

.azur-media-content__description > :last-child {
    margin-bottom: 0;
}

.azur-media-content__description img,
.azur-media-content__description video,
.azur-media-content__description iframe {
    max-width: 100%;
    height: auto;
}

.azur-media-content__description a {
    text-underline-offset: 0.16em;
}

.azur-media-content__description a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.azur-media-content__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: var(--azur-media-content-image-ratio);
    object-fit: cover;
    object-position: center center;
    border-radius: 4px;
    transition-property: filter, opacity, transform, box-shadow;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.azur-media-content__media--placeholder {
    min-height: 260px;
    padding: 28px;
    border: 1px dashed #9fb1c3;
    border-radius: 4px;
    background: #ffffff;
    color: #526a81;
    text-align: center;
}

.azur-media-content--without-image:not(.azur-media-content--editor) .azur-media-content__content {
    flex-basis: 100%;
    max-width: 780px;
}
