.overview-container {
    position: relative;
    margin: 0 auto 0 auto;
    max-width: 1280px;
    background-color: var(--wp--preset--color--custom-color-4);
    display: flex;
    flex-direction: column;
    align-items: center;

    .normal-tiles-container {
        display: grid;
        gap: 20px;
        align-items: start;
        margin: 0 auto 20px auto;
        padding: 0 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    @media (min-width: 820px) {
        .normal-tiles-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .tile-link {
        margin: 0!important;
    }

    .overview-tile-big,
    .overview-tile-normal {
        margin: 0 auto;
        width: 100%;
        height: auto;
        padding: 0;
        overflow: hidden;
        img {
            transition: transform 0.3s ease;
        }
    }

    .overview-tile-big:hover,
    .overview-tile-normal:hover {
        .tile-category,
        .tile-title {
            color: var(--wp--preset--color--custom-color-5);
        }
        img {
            transform: scale(1.05);
        }

    }

    .overview-tile-normal {
    }

    .overview-tile-normal img {
        border-radius: 10px;
    }

    .tile-image {
        max-width: 100%;
        margin: 0;
    }

    .tile-image img {
        width: 100%;
        height: auto;
    }

    .overview-info {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .overview-info .wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 100%;
        padding: 10px 0 10px 20px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .overview-tile-normal .overview-info .wrapper {
        padding: 5px 0 5px 10px;
    }

    .tile-category {
        margin: 0 !important;
        font-weight: 400;
        max-width: none;
    }

    .overview-tile-normal .tile-category {
        font-size: 16px;
    }

    .tile-title {
        margin: 0 !important;
        font-weight: 600;
        max-width: none;
    }

    .overview-tile-normal .tile-title {
        font-size: 18px;
    }
}