/* News Carousel — kart tasarımı */
.nc-section { width: 100%; padding: 2rem 0; }
.nc-heading {
    text-align: center;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #1a202c;
}

.nc-swiper { position: relative; padding: 0 3.5rem; }
.nc-swiper .swiper-slide { height: auto; display: flex; }

/* Tek kart */
.nc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ddd;
    border-radius: 6px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.nc-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }

.nc-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .4s ease;
    z-index: 0;
}
.nc-card:hover .nc-card-bg { transform: scale(1.05); }
.nc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

/* Üst alıntı (excerpt) */
.nc-card-quote {
    position: relative;
    z-index: 2;
    padding: 1.25rem 1.25rem 0;
    color: #fff;
}
.nc-card-quote p {
    margin: 0;
    font-size: clamp(.95rem, 1.1vw, 1.05rem);
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Alt footer (haber başlığı + LEARN MORE) */
.nc-card-footer {
    position: relative;
    z-index: 2;
    background: #f3f4f6;
    color: #1a202c;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.nc-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.nc-card-cta {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #1a202c;
}

/* Nav butonları */
.nc-swiper .swiper-button-prev,
.nc-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    color: #1a202c;
    margin-top: -22px;
}
.nc-swiper .swiper-button-prev::after,
.nc-swiper .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}
.nc-swiper .swiper-button-disabled { opacity: .35; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .nc-card,
    .nc-card-bg { transition: none; }
    .nc-card:hover { transform: none; }
}

/* Mobil */
@media (max-width: 768px) {
    .nc-swiper { padding: 0 1rem; }
    .nc-swiper .swiper-button-prev,
    .nc-swiper .swiper-button-next { display: none; }
}
