.excel-presentation-section {
    background-color: var(--gray-section-background-color);
    padding-bottom: var(--container-padding-block);
}

.excel-presentation-section .excel-presentation__section {
    display: flex;
    gap: 40px;
    padding-block: var(--container-padding-block);
}

.excel-presentation-section .excel-presentation__section:last-child {
    padding-bottom: 32px;
}

.excel-presentation__section .image-wrapper {
    flex: 1;
    height: 270px;
    overflow: hidden;
    border-radius: 1rem;
    display: flex;
}

.excel-presentation__section .image-wrapper img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.excel-presentation__section .text-wrapper {
    flex: 1;
}

.excel-presentation__section .text-wrapper p:first-child {
    color: var(--muted-blue);
    font-weight: 500;
    font-size: 20px;
}

.excel-presentation__section .text-wrapper p:last-child {
    font-weight: 500;
}

.excel-presentation__section .text-wrapper h2 {
    margin-top: .5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .excel-presentation-section .excel-presentation__section:nth-child(2n) {
        flex-direction: row-reverse;
    }
}

@media (max-width: 1024px) {


    .excel-presentation-section .excel-presentation__section {
        flex-wrap: wrap;
    }

    .excel-presentation__section .image-wrapper {
        order: 2;
    }

    .excel-presentation__section .image-wrapper, .excel-presentation__section .text-wrapper {
        flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .excel-presentation-section {
        text-align: center;
    }


}

@media (max-width: 768px) {
    .excel-presentation__section .image-wrapper {
        height: 180px;
    }

    .excel-presentation-section .excel-button {
        width: 100%;
    }
}