.presentation-page .content {
    background-color: unset;
}

.presentation-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.presentation-table a {
    display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: white;
    position: relative;
}

.presentation-table img {
    object-fit: contain;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.presentation-table .presentation-text {
    padding: 10px 20px;
}

.presentation-table h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

@media (max-width: 780px) {
    .presentation-page .content {
        background-color: unset;
        padding: unset;
    }

    .presentation-table {
        grid-template-columns: 1fr;
    }

    .presentation-table a {
        width: 100%;
    }

    .presentation-table h2 {
        font-size: 18px;
        min-height: 45px;
    }

}