.tipps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px; */
    /* border: 1px solid #cde2ff;
    border-radius: 8px; */
    padding: 12px;
}

.tipp {
    /* border-radius: 4px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 0 20%;
    /* display: grid;
    grid-template-rows: 200px 80px 50px; */
    overflow: hidden;
    padding: 12px;
}

/* .tipp.orange {
    border: 2px solid #ffaf60;
}

.tipp.purple {
    border: 2px solid #a88dff;
}

.tipp.blue {
    border: 2px solid #93b9ff;
}

.tipp.green {
    border: 2px solid #82d0ac;
} */

@media (max-width: 1150px) {
    .tipp {
        flex: 1 0 45%;
    }
}

@media (max-width: 600px) {
    .tipp {
        flex: 1 0 100%;
    }
}

.tipp img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.tipp .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    padding: 12px;
    text-align: center;
    width: 80%;
    margin: auto;
    border-radius: 8px;
    height: 80px;
}

.tipp.orange .title {
    /* background-color: #e47e17; */
    background: radial-gradient(ellipse 100% 200% at center, #ffaf60 0%, #ff8000 100%);
    color: white;
}

.tipp.purple .title {
    /* background-color: #7f58ff; */
    background: radial-gradient(ellipse 100% 200% at center, #a88dff 0%, #5622ff 100%);
    color: white;
}

.tipp.blue .title {
    /* background-color: #3c80ff; */
    background: radial-gradient(ellipse 100% 200% at center, #93b9ff 0%, #3c80ff 100%);
    color: white;
}

.tipp.green .title {
    /* background-color: #1c9b60; */
    background: radial-gradient(ellipse 100% 200% at center, #82d0ac 0%, #1c9b60 100%);
    color: white;
}

.tipp .content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    height: 100px;
    width: 80%;
    margin: auto;
}
