/* Upsale Block Styles */

.c-upsale {
    padding-top: 80px;
    padding-bottom: 40px;
}

.c-upsale__headline {
    color: #d68a27;
    font-size: 2.75rem;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.c-upsale__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.c-upsale__item {
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    height: 100%;
}

.c-upsale__image {
    width: 100%;
    line-height: 0;
}

.c-upsale__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 400;
    display: block;
    object-fit: cover;
}

.c-upsale__content {
    background: #5e5e5d;
    padding: 1.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.c-upsale__title {
    color: #fff;
    font-size: 2.1875rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.c-upsale__text {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.875rem;
    margin: 0 0 3.4375rem 0;
    flex-grow: 1;
}

.c-upsale__button {
    display: inline-flex;
    border: 1px solid #d68a27;
    min-height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    background: #d68a27;
    color: #fff;
    padding: 0 0.9375rem;
    height: auto;
    align-self: flex-end;
    margin-top: 1.5rem;
}

.c-upsale__button:hover {
    background: transparent;
    color: #d68a27;
}

.c-upsale__button .c-btn__icon {
    margin-left: 0.9375rem;
    transition: none !important;
    margin-right: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .c-upsale__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .c-upsale__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }


    .c-upsale__content {
        padding: 2rem 2rem 2rem 2rem;
    }


}
