.omt-image-text-highlights {
    --_spacing: var(--wp--preset--spacing--90, 48px);
    --_border-color: var(--wp--preset--color--primary-500, #15356E);
    --_hover-transition: all 0.3s ease;
    --_image-width: 280px;
    --_image-height: 372px;
    --_section-max-width: var(--wp--custom--width--default, 1440px);
    --_section-padding: 0 var(--wp--preset--spacing--40, 20px);
    padding-block: var(--_spacing);
    overflow: visible;
    max-width: var(--_section-max-width);
    margin: 0 auto;
    padding-inline: var(--wp--preset--spacing--40, 20px);
    padding: var(--wp--preset--spacing--40, 20px) 0;
    position: relative;
}

.omt-image-text-highlights__container {
    display: flex;
    flex-direction: column;
    gap: var(--_spacing);
    width: 100%;
}

.omt-image-text-highlights__header {
    text-align: center;
    margin: 0 auto;
    padding: 0 var(--wp--preset--spacing--40, 20px);
}

.omt-image-text-highlights__title {
    max-width: 984px;
    margin: 0 auto;
    text-align: center;
    word-wrap: break-word;
    text-transform: inherit;
}

.omt-image-text-highlights__highlights-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.omt-image-text-highlights__highlight {
    position: relative;
    padding: var(--wp--preset--spacing--60, 30px) var(--wp--preset--spacing--40, 20px);
    border-bottom: 1px dashed var(--_border-color);
    margin-top: -1px;
    text-decoration: none;
    color: inherit;
    transition: var(--_hover-transition);
    display: block;
}

.omt-image-text-highlights__highlight:first-child {
    margin-top: 0;
    border-top: 1px dashed var(--_border-color);
}

.omt-image-text-highlights__highlight:hover {
    text-decoration: none;
}

.omt-image-text-highlights__highlight-content {
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--10, 10px);
}

.omt-image-text-highlights__highlight-title {
    word-wrap: break-word;
    margin: 0;
    text-transform: inherit;
}

.omt-image-text-highlights__highlight-description {
    word-wrap: break-word;
    margin: 0;
}

.omt-image-text-highlights__highlight-image-wrapper {
    display: none;
    position: absolute;
    width: var(--_image-width);
    height: var(--_image-height);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.omt-image-text-highlights__highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {
    .omt-image-text-highlights {
        padding-block: var(--_spacing);
        padding-inline: 0;
    }

    .omt-image-text-highlights__container {
        gap: var(--_spacing);
    }

    .omt-image-text-highlights__highlight {
        width: 100%;
        max-width: var(--_section-max-width);
        height: auto;
        min-height: 188px;
        margin: 0 auto;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 50%;
        align-items: center;
        position: relative;
        padding: var(--wp--preset--spacing--60) 0;
    }

    .omt-image-text-highlights__highlight-content {
        grid-column: 2;
        max-width: 530px;
        gap: var(--wp--preset--spacing--10, 10px);
        position: relative;
    }

    .omt-image-text-highlights__highlights-wrapper[data-hover-images="true"] .omt-image-text-highlights__highlight-image-wrapper {
        display: block;
        position: absolute;
        top: -8%;
        left: 15%;
        transform: translate(-50%, -50%);
        width: var(--_image-width);
        height: var(--_image-height);
        z-index: 10;
    }

    .omt-image-text-highlights__highlights-wrapper[data-hover-images="true"] .omt-image-text-highlights__highlight--has-image:hover .omt-image-text-highlights__highlight-image-wrapper {
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .omt-image-text-highlights {
        padding-inline: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .omt-image-text-highlights__highlight,
    .omt-image-text-highlights__highlight-image-wrapper,
    .omt-image-text-highlights__cta-link-text::after {
        transition: none;
    }
}