  
@media (min-width: 600px) {
.mob-banner {
display: none;
}
}  
  
@media (min-width: 576px) {
.col-sm-10 {
    max-width: 100% !important;
}
}
 
#c2037  {
    background-color: #39835e;
    color: #fff;
}
/* =======================================
    Raetselseite 
======================================= */

.puzzle-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; 
    width: 100%;
}
.puzzle-item {
    display: flex;
    flex-direction: column;
    border-radius: 0.375rem;
}
.puzzle-item > a {
    color: inherit;
    text-decoration: none;
}
.puzzle-item__title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
.puzzle-item__image {
    position: relative;
    margin: 0;
}
.puzzle-item__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.25) 100%);
}
.puzzle-item__media > img {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.puzzle-item__content {
    padding: 0.75rem;
    background: #f2f2f2;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
@media screen and (min-width: 576px) {
    .puzzle-item__content {
        padding: 1rem;
    }
    .puzzle-item__title {
        font-size: 1.125rem;
    }
}
@media (min-width: 768px) {
    .puzzle-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
