.modern-kacheln-widget {
    padding: 40px 0;
}
.modern-kacheln-widget .container {
    background: #264065;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 15px;
}
.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0.25em;
}
.section-description {
    text-align: center;
    margin-bottom: 2em;
    font-size: 1.1em;
    color: #fff;
}
.kacheln-wrapper {
    display: grid;
    gap: 30px;
}
.kachel-item {
    background: #264065;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
}
.kachel-item:hover {
    transform: translateY(-8px);
}
.kachel-link {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}
.kachel-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* Hover Effects */
.hover-effect-zoom-in img {
    transition: transform 0.3s ease;
}
.hover-effect-zoom-in:hover img {
    transform: scale(1.1);
}
.hover-effect-grayscale img {
    filter: grayscale(0);
    transition: filter 0.3s ease;
}
.hover-effect-grayscale:hover img {
    filter: grayscale(100%);
}
.kachel-title {
    margin: 15px 0 10px;
    font-weight: 600;
    font-size: 1.2em;
    padding-top: 40px;
}
.kachel-description {
    font-size: 1em;
    color: #666;
    margin: 0 0 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .kacheln-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .kacheln-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Dynamische Spaltenklassen */
.kacheln-columns-2 .kacheln-wrapper {
    grid-template-columns: repeat(2, 1fr);
}
.kacheln-columns-3 .kacheln-wrapper {
    grid-template-columns: repeat(3, 1fr);
}
.kacheln-columns-4 .kacheln-wrapper {
    grid-template-columns: repeat(4, 1fr);
}
