.sustainability section.reports {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 5rem 20rem;

    gap: 5rem;
}

.sustainability section.reports a {
    text-decoration: none;
}

.reports__description {
    display: grid;

    grid-template-columns: 1fr 2fr;
    gap: 5rem;
}

.reports__items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.reports__cell {
    position: relative;

    height: 100%;
    width: 100%;

    aspect-ratio: 1 / 1;
}

.reports__cell__content {
    width: 100%;
    height: 100%;

    padding: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 1rem;

    background: linear-gradient(180deg, rgba(57, 140, 203, 0) 0%, rgb(57, 140, 203) 65%);
}

.reports__cell, .reports__cell p {
    font-size: 1.5rem;
    color: white;
}

.reports__cell > * {
    position: relative;
    z-index: 1;
}

.reports__cell__background {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}

.reports__cell__background img {
    object-fit: cover;

    height: 100%;
}

@media screen and (max-width: 1280px) {
    .sustainability section.reports {
        padding: 5rem 10rem;
    }

    .reports__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .sustainability section.reports {
        padding: 5rem;
    }

    .reports__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .sustainability section.reports {
        padding: 5rem 2.5rem;
    }

    .reports__description {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reports__items {
        gap: 1rem;
    }

    .reports__cell__content {
        padding: 1rem;
    }

    .reports__cell, .reports__cell p {
        font-size: 1rem;
    }
}
