.news-section-unique {
    display: flex;
    height: 396px;
    margin-bottom: 90px;
    align-items: center;
    background-color: #0073b1;
    color: white;
    overflow: hidden;
    position: relative;
}

.news-content-unique {
    position: relative;
    width: 50%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.news-content-unique h2 {
    position: relative;
    top: 0;
    left: 0;
    font-size: 1.75rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-family: "Ubuntu";
    font-weight: 500;
    text-align: left;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.news-content-unique p {
    position: relative;
    top: 0;
    left: 0;
    font-size: 1rem;
    letter-spacing: 0.3px;
    line-height: 1.6;
    font-family: "Ubuntu";
    font-weight: 400;
    text-align: left;
    color: #fff;
    max-width: 100%;
    margin-bottom: 2rem;
}

.discover-button-unique {
    position: relative;
    display: inline-flex;
    align-items: center;
    left: 0;
    bottom: 0;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    font-family: "Ubuntu";
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    width: fit-content;
    margin-top: auto;
}

.discover-button-unique .arrow {
    margin-left: 9px; /* Ok ile metin arasında boşluk ekle */
    font-size: 18px;
}

.discover-button-unique:hover {
    background-color: white;
    color: #0073b1;
}

.news-slider-unique {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.slide-unique {
    min-width: 100%;
    transition: transform 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

.slide-unique img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.news-info-unique {
    width: 50%;
    color: white;
}

.slider-controls-unique {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 2vw;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50px;
}

/* Genel buton ayarları */
.prev-unique, .next-unique {
    border: none;
    border-radius: 50%; /* Yuvarlak buton */
    font-size: 20px; /* Yazı boyutu */
    width: 72px; /* Buton genişliği */
    height: 72px; /* Buton yüksekliği */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-position 0.9s ease, color 0.9s ease; /* Hareketli geçiş */
}

/* Next butonu için sağdan sola dolma */
.next-unique {
    background: linear-gradient(to left, transparent 50%,#00aeef 50%); /* Sağdan sola gradyan */
    background-size: 220% 100%;
    background-position: right bottom; /* Başlangıç pozisyonu sağda */
    border-start-start-radius: 50%;
    color: #020035; /* Yazı rengi */
}

.next-unique:hover {
    background-position: left bottom; /* Hover durumunda sola kayma */
    color: white;
}

/* Prev butonu için soldan sağa dolma */
.prev-unique {
    background: linear-gradient(to right, transparent 50%,#00aeef 50%); /* Soldan sağa gradyan */
    background-size: 220% 100%;
    background-position: left bottom; /* Başlangıç pozisyonu solda */
    color: #020035;
}

.prev-unique:hover {
    background-position: right bottom; /* Hover durumunda sağa kayma */
    color: white;
}

/* Devre dışı durumda sabit arka plan rengi */
.prev-unique.disabled,
.next-unique.disabled {
    background: #e0e0e0; /* Sabit gri arka plan */
    color: #ccc;         /* Gri yazı rengi */
    cursor: default; /* Tıklanamaz işaret */
    background-size: initial; /* Hareketli efekti kapat */
    transition: none; /* Geçiş efektlerini iptal et */
}

.prev-unique.disabled:hover,
.next-unique.disabled:hover {
    background-position: initial; /* Hover durumunda da hareket etmesin */
    color: #ccc;
}

.indicators-unique {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.dot-unique {
    width: 11px;
    height: 11px;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot-unique.active {
    width: 15px;
    height: 15px;
    background-color: #020035;
    border: 2px #020035;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-content-unique {
        padding: 2rem;
    }
    
    .news-content-unique h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .news-content-unique p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .discover-button-unique {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .news-content-unique {
        padding: 1.5rem;
    }
    
    .news-content-unique h2 {
        font-size: 1.25rem;
    }
    
    .news-content-unique p {
        font-size: 0.85rem;
    }
}

