/* Decisions */
.decisions {
    padding: 0 15px !important;
}

.decisions .swiper-slide {
    height: initial;
}

.decision-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    height: 100%;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
}

.decision-item-image {
    display: flex;
    width: calc(50% - 12px);
    border-radius: 8px;
    overflow: hidden;
}

.decision-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decision-item-info {
    display: flex;
    flex-direction: column;
    width: calc(50% - 12px);
}

.decision-item-title {
    margin-bottom: 24px;
}

.decision-item-description {
    margin-bottom: 24px;
}

.decision-item-button {
    max-width: max-content;
    margin-top: auto;
}

@media (max-width: 767px) {
    .decisions {
        margin: 0 calc((100% - 100vw) / 2) !important;
        padding: 0 calc((100vw - 100%) / 2) !important;
    }

    .decision-item {
        flex-direction: column;
        padding: 16px;
    }

    .decision-item-image {
        order: 1;
        width: 100%;
    }

    .decision-item-image img {
        max-height: max(50vw , 240px);
    }

    .decision-item-info {
        width: 100%;
    }

    .decision-item-title {
        margin-bottom: 16px;
    }
}