.slide-title .direct-link {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.slide-title .direct-link span {
    pointer-events: auto;
}

.trigger-item {
    pointer-events: none;
}

.trigger-item .img-mask {
    pointer-events: auto;
}

/* Direkte Navigation für Portfolio-Links */
.slide-link.direct-nav {
    position: absolute;
    z-index: 100;
    pointer-events: auto !important;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.thumb-slide {
    position: relative;
    z-index: 1;
}

.thumb-slide-img {
    pointer-events: none;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.blog-post-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post-item:hover {
    transform: translateY(-5px);
}

.blog-post-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-content h6 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.blog-post-content h6 a {
    color: #1a3d64;
    text-decoration: none;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}
