.block-solution-grid .solution-grid {
    display: grid;
    gap: 1rem;
    container-type: inline-size;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.block-solution-grid .solution-grid > div {
    position: relative;
    overflow: hidden;
    padding: 2rem 1.5rem;
    border-radius: 2rem;
    background-color: white;
}

.block-solution-grid .solution-grid > div:has(img) {
    display: none;
}

@media (min-width: 768px) {
    .block-solution-grid .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .block-solution-grid .solution-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, minmax(25cqw, auto));
    }
    .block-solution-grid .solution-grid .cell-double {
        grid-column: span 2;
    }
    .block-solution-grid .solution-grid > div:has(img) {
        display: block;
    }
}

.block-solution-grid .solution-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-solution-grid .solution-grid .mascotte img {
    object-fit: contain;
}

.block-solution-grid .solution-grid .taxo {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25em 1em;
    background-color: var(--wp--preset--color--color-2);
    border-radius: 2rem;
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.block-solution-grid .solution-grid h2 a {
    text-decoration: none;
}
.block-solution-grid .solution-grid h2 a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 0.25em;
    background-color: currentColor;
    transition: margin-left 0.3s ease;
    mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cmask id='arrow-cut'%3E%3Crect width='20' height='20' fill='white'/%3E%3Cpath d='M8.75 12.75L11.75 9.75L8.75 6.75' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/mask%3E%3C/defs%3E%3Ccircle cx='10' cy='10' r='10' fill='black' mask='url(%23arrow-cut)'/%3E%3C/svg%3E");
}
.block-solution-grid .solution-grid h2 a:hover::after {
    margin-left: 0.5em;
}

.block-solution-grid .solution-grid > div.bg-color-2 {
    color: white;
}
.block-solution-grid .solution-grid > div.bg-color-2 .taxo {
    background-color: white;
    color: var(--wp--preset--color--color-2);
}
.block-solution-grid .solution-grid > div.bg-color-2 h2 a::after {
    color: var(--wp--preset--color--color-1);
}


.block-solution-grid .solution-grid > div:last-child {
    grid-row: 4;
    grid-column: 1;
}
@media (min-width: 768px) {
    .block-solution-grid .solution-grid > div:last-child {
        grid-row: 2;
        grid-column: 1;
    }
}
@media (min-width: 1200px) {
    .block-solution-grid .solution-grid > div:last-child {
        grid-row: auto;
        grid-column: auto;
    }
}