/* Minification failed. Returning unminified contents.
(16,28): run-time error CSS1039: Token not allowed after unary operator: '-card-bg-color'
(33,28): run-time error CSS1039: Token not allowed after unary operator: '-card-bg-color'
(99,27): run-time error CSS1039: Token not allowed after unary operator: '-text-alignment'
(103,28): run-time error CSS1039: Token not allowed after unary operator: '-background-color'
(106,17): run-time error CSS1039: Token not allowed after unary operator: '-text-color'
(118,28): run-time error CSS1039: Token not allowed after unary operator: '-hover-background-color'
(119,17): run-time error CSS1039: Token not allowed after unary operator: '-hover-text-color'
 */
.mix-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background-color: transparent;
    margin-left: 16px;
    margin-right: 16px;
}

.mix-card__image-container {
    background-color: var(--card-bg-color, #FFFFFF);
    width: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.mix-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mix-card__content {
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg-color, #FFFFFF);
    padding: 16px;
    flex: 1 1 auto;
}

.mix-card__header-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.mix-card__logo {
    display: flex;
    margin-bottom: 8px;
}

.mix-card__logo img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    margin-left: auto;
}

.mix-card__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 4px 0;
    color: #000;
}

/* Ensure OPE wrapper doesn't break layout */
.mix-card__title > div {
    display: inline;
}

.mix-card__subtitle {
    font-size: 18px;
    font-weight: 325;
    line-height: 1.4;
    margin: 0;
    color: #000;
}

.mix-card__description {
    font-size: 16px;
    font-weight: 325;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #000;
}

/* --- Actions (Buttons/Links) --- */
.mix-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.mix-card__btn {
    display: inline-flex;
    min-height: 48px;
    min-width: 140px;
    padding: 8px 24px;
    justify-content: var(--text-alignment, center) !important;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    border: 1px solid var(--background-color, #002E5D) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: var(--text-color, #002E5D) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.mix-card__btn:hover {
    background-color: var(--hover-background-color, #002E5D) !important;
    color: var(--hover-text-color, #FFF) !important;
}

.mix-card__btn:hover, .mix-card__btn:active {
    box-shadow: none !important;
}

.mix-card__link-wrapper {
    height: 32px;
    display: flex;
    align-items: center;
}

.mix-card__link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0072E3;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

/* --- Mobile Layout Ordering --- */
/* If Image Position is End (Bottom on Mobile) */
.mix-card--mobile-image-end .mix-card__image-container {
    order: 2;
}


/* =========================================
   TABLET & DESKTOP (Row Layouts)
   ========================================= */
@media (min-width: 768px) {
    .mix-card {
        flex-direction: row;
        align-items: stretch;
        margin-left: 0;
        margin-right: 0;
    }

    .mix-card__title {
        font-size: 42px;
    }

    .mix-card__subtitle {
        font-size: 24px;
    }

    /* 3/4 Layout: Image 75%, Content 25% */
    .mix-card--3-4 .mix-card__image-container {
        flex: 0 0 75%;
        width: 75%;
    }

    .mix-card--3-4 .mix-card__content {
        flex: 0 0 25%;
        width: 25%;
    }

    /* 50-50 Layout: Image 50%, Content 50% */
    .mix-card--50-50 .mix-card__image-container {
        flex: 0 0 50%;
        width: 50%;
    }

    .mix-card--50-50 .mix-card__content {
        flex: 0 0 50%;
        width: 50%;
    }

    /* --- Desktop Positioning (Start/End) --- */
    .mix-card--desktop-image-start .mix-card__image-container {
        order: 1;
    }

    .mix-card--desktop-image-start .mix-card__content {
        order: 2;
    }

    .mix-card--desktop-image-end .mix-card__image-container {
        order: 2;
    }

    .mix-card--desktop-image-end .mix-card__content {
        order: 1;
    }

    /* --- SPECIAL EXCEPTION: 50-50 Logo Placement --- */
    /* Rule: In 50-50 layout on Desktop, Logo moves to the right 
       of the Title/Subtitle group.
    */
    .mix-card--50-50 .mix-card__header-group {
        flex-direction: row; /* Switch to row */
        justify-content: space-between;
        align-items: center;
    }

    .mix-card--50-50 .mix-card__logo {
        order: 2; /* Move visually to right */
        margin-left: 24px;
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .mix-card--50-50 .mix-card__titles {
        order: 1;
        flex: 1 1 auto;
    }
}

