.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
    margin: 6px auto;
    padding: 0 6px;
}

/* --- SWIPER SLIDER --- */
.hero-container {
    flex: 1 1 75%;
    min-width: 320px;
}

.swiper {
    width: 100%;
    height: 80vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Yazıların okunması için resmi kararttık */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Butonlarla beraber merkezi hizalama */
    padding: 80px;
    color: white;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
}

/* --- BUTON TASARIMI --- */
.hero-btn {
    background-color: var(--second-text);
    color: var(--main-bg);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 106, 78, 0.4);
}

/* --- GÜNDEM PANELİ --- */
.sidebar-container {
    flex: 1 1 23%;
    height: 80vh; /* Slider ile aynı */
    min-width: 300px;
}

.gundem-card {
    background: var(--second-bg);
    border-radius: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 6px;
}

.gundem-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto; /* Haberler burada kayacak */
    padding-right: 5px; /* Scrollbar'ın kartlara yapışmaması için */
}

/* Chrome/Safari için scrollbar tasarımı */
/* --- ŞIK BİR SCROLLBAR (Opsiyonel) --- */
.gundem-list::-webkit-scrollbar {
    width: 4px;
}
.gundem-list::-webkit-scrollbar-thumb {
    background: var(--second-text);
    border-radius: 10px;
}

.gundem-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.gundem-title {
    color: var(--main-text);
    font-weight: 900;
    text-transform: uppercase;
    padding: 22px;
    text-align: center;
}

.gundem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 4px;
}

.gundem-item-card {
    flex-shrink: 0; /* Kartların yüksekliğinin ezilmesini engeller */
    background: var(--second-text);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.gundem-item-card:hover {
    transform: translateY(-5px);
}

.gundem-image {
    position: relative;
    height: 140px;
}

.gundem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gundem-image .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: white;
    background: var(--bursa-karasi); /* Veya kategorine göre renk */
}

.gundem-content {
    padding: 15px;
}

.gundem-content h4 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}
