.dm-featured-content {
    --dm-featured-content-bg-color: #000;
    --dm-featured-content-bg-image: none;

    position: relative;
    background-color: var(--dm-featured-content-bg-color);
    background-image: var(--dm-featured-content-bg-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;

    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.dm-featured-content__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.dm-featured-content__content {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(3rem, 6vw, 7rem);
    text-align: center;
    z-index: 2;
}

.dm-featured-content__media {
    order: 2;
    min-height: 620px;
    z-index: 1;
}

.dm-featured-content--swap-columns .dm-featured-content__media {
    order: 1;
}

.dm-featured-content--swap-columns .dm-featured-content__content {
    order: 2;
}

.dm-featured-content__bg-media {
    width: 100%;
    height: 100%;
    min-height: 620px;
    background-size: cover;
    background-position: center;
}

.dm-featured-content__image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
}

.dm-featured-content--text-light {
    color: #fff;
}

.dm-featured-content--text-dark {
    color: #1f1f1f;
}

.dm-featured-content__heading {
    margin: 0 0 2rem;
    color: inherit;
    font-size: clamp(1.7rem, 2.4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

.dm-featured-content__description {
    max-width: 640px;
    margin: 0 0 3rem;
    color: inherit;
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.dm-featured-content__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 2.2rem;
    background: #ff8a00;
    color: #111 !important;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.dm-featured-content__button:hover,
.dm-featured-content__button:focus {
    background: #fff;
    color: #111 !important;
}

.dm-featured-content__button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 5px;
}

.dm-featured-content.is-editor-preview .dm-featured-content__button {
    pointer-events: none;
    cursor: default;
}

@media (max-width: 992px) {
    .dm-featured-content__inner {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .dm-featured-content__media {
        order: 1 !important;
        min-height: 0;
    }

    .dm-featured-content__content {
        order: 2 !important;
        padding: 3rem 1.5rem;
    }

    .dm-featured-content__bg-media,
    .dm-featured-content__image {
        min-height: 480px;
        height: 480px;
    }

    .dm-featured-content__description {
        line-height: 1.65;
        margin-bottom: 2rem;
    }
}