.wns-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wns-slides {
    width: 100%;
    height: 100%;
}

.wns-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute; /* Slaytlar üst üste gelir */
    top: 0;
    left: 0;
    display: none; /* Varsayılan olarak gizli */
}

.wns-slide:first-child {
    display: block; /* İlk slayt görünür */
}

.wns-content {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
}

.wns-title {
    font-size: 24px;
    margin: 0 0 10px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wns-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.wns-title a:hover {
    color: #00b4ff;
}

.wns-meta {
    font-size: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wns-prev, .wns-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 10;
}

.wns-prev:hover, .wns-next:hover {
    opacity: 1;
}

.wns-prev {
    left: 10px;
}

.wns-next {
    right: 10px;
}