/*------------------------------------------------------------------
wide_cards_band.css
Last edited: 10/1/25

[Notes]
-------------------------------------------------------------------*/
.wide-card {
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
    position: relative;
    display: grid;
    background-color: var(--theme-color-light);
}

.wide-card-image {
    order: 0;
}

.wide-card-body {
    order: 1;
}

.wide-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
}

.wide-card-body h3 {
    margin-bottom: 30px;
}

.wide-card {
    margin-top: 48px;
}

.wide-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 429 / 263;
    object-fit: cover;
    display: block;
}

.wide-card .btn {
    margin-top: auto;
    --btn-color: var(--theme-color-blue);
    background-color: transparent;
    color: var(--btn-color);
    width: max-content;
    padding-inline: 40px;
}

.wide-card .btn:hover {
    --btn-color: var(--theme-color-light);
    background-color: transparent;
    color: var(--theme-color-light);
}

.wide-card.has-link:hover {
    background-color: var(--theme-color-orange);
    color: white;
    box-shadow: 0px 10px 20px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
    .wide-card {
        grid-template-columns: 1fr max-content;
    }

    .wide-card-image {
        order: 1;
    }

    .wide-card img {
        width: 429px;
    }

    .wide-card-body {
        order: 0;
    }
}

@media screen and (min-width: 992px) {
    .wide-card-body {
        padding: 63px 77px 48px 48px;
    }
}