/* DUYURULAR REDESIGN V6 - COMPACT HORIZONTAL */
:root {
    --aurora-blue: #024e6e;
    --aurora-green: #03a258;
    --aurora-bg: #fdfdfd;
}

.duyurular-v6-section {
    padding: 80px 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(150px);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}
.blob-1 { top: -150px; left: -150px; background: var(--aurora-blue); }
.blob-2 { bottom: -150px; right: -150px; background: var(--aurora-green); }

.v6-container { position: relative; z-index: 1; }

.v6-header {
    margin-bottom: 40px;
    text-align: center;
}
.v6-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
}

/* Tab Navigation */
.v6-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.v6-tab-trigger {
    padding: 12px 25px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Kategori Bazlı Renkler */
.v6-tab-trigger[data-target="#v6-duyurular"] { color: var(--aurora-blue); }
.v6-tab-trigger[data-target="#v6-ihaleler"] { color: var(--aurora-green); }
.v6-tab-trigger[data-target="#v6-raporlar"] { color: #fa7b15; }

/* Aktif Durumda Arkaplan Rengi Yazı Rengiyle Aynı Olsun */
.v6-tab-trigger.active {
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.v6-tab-trigger.active[data-target="#v6-duyurular"] { background: var(--aurora-blue); }
.v6-tab-trigger.active[data-target="#v6-ihaleler"] { background: var(--aurora-green); }
.v6-tab-trigger.active[data-target="#v6-raporlar"] { background: #fa7b15; }

/* Compact Horizontal Card Design */
.v6-tab-pane {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: v6-slide-up 0.5s ease-out forwards;
}

.v6-tab-pane.active { display: grid; }

.v6-card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-decoration: none !important;
    height: 100px; /* Daha küçük kutular için yükseklik düşürüldü */
}

.v6-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(2, 78, 110, 0.1);
}

.v6-card-media {
    width: 150px; /* Görsel genişliği daraltıldı */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.v6-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v6-card:hover .v6-card-media img { transform: scale(1.1); }

/* Compact Date Badge */
.v6-date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}

.v6-date-badge span.day { font-size: 14px; font-weight: 900; color: var(--aurora-blue); }
.v6-date-badge span.month { font-size: 8px; font-weight: 800; color: #64748b; text-transform: uppercase; margin-top: 2px; }

.v6-card-content {
    padding: 7px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v6-card-content span.tag {
    font-size: 9px;
    font-weight: 800;
    color: var(--aurora-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.v6-card-content h3 {
    font-size: 14px; /* Başlık küçültüldü */
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v6-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
}

.v6-card:hover .v6-card-footer { color: var(--aurora-blue); }

/* Footer Action */
.v6-all-footer {
    margin-top: 40px;
    text-align: center;
}
.v6-btn-premium {
    display: inline-block;
    color: var(--aurora-blue);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--aurora-blue);
    transition: 0.3s;
    opacity: 0.8;
}

.v6-btn-premium:hover {
    color: var(--aurora-green);
    border-color: var(--aurora-green);
    opacity: 1;
}

@keyframes v6-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Refined Mobile Component - Minimal List Style */
@media (max-width: 768px) {
    .duyurular-v6-section { 
        padding: 40px 0; 
        background-color: #ffffff; 
    }
    
    .v6-header { 
        text-align: left; 
        margin-bottom: 20px; 
    }
    .v6-header h2 { 
        font-size: 24px; 
        color: #1e293b; 
        font-weight: 800;
        margin-bottom: 5px; 
    }
    .v6-header::after {
        content: "Güncel gelişmeleri buradan takip edebilirsiniz.";
        display: block;
        font-size: 13px;
        color: #94a3b8;
    }

    .v6-tabs-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 5px 0 10px 0;
        margin-bottom: 15px;
        gap: 8px;
    }
    .v6-tab-trigger {
        background: #f8fafc;
        border: 1px solid #f1f5f9;
        padding: 8px 18px;
        font-size: 11px;
        border-radius: 10px;
        color: #64748b;
    }

    .v6-tab-pane { 
        display: none;
        flex-direction: column;
        gap: 10px; 
    }
    .v6-tab-pane.active { display: flex; }

    .v6-card {
        background: #fff;
        border-radius: 16px;
        border: 1px solid #f1f5f9;
        padding: 18px;
        display: flex;
        align-items: center;
        transition: 0.3s;
        box-shadow: 0 2px 4px rgba(0,0,0,0.01);
    }
    
    .v6-card-media { display: none; }

    .v6-card-content {
        padding: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .v6-card-content h3 {
        font-size: 14px;
        font-weight: 700;
        color: #334155;
        line-height: 1.5;
        position: relative;
        padding-left: 15px;
    }
    
    /* Small Category Dot Indicator */
    .v6-card-content h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--aurora-blue);
    }
    #v6-ihaleler .v6-card-content h3::before { background: var(--aurora-green); }
    #v6-raporlar .v6-card-content h3::before { background: #fa7b15; }

    .v6-card-footer {
        margin-left: 10px;
        display: flex;
        align-items: center;
        color: #cbd5e1;
    }
 
    .v6-card-footer i { font-size: 16px; }
    .v6-card-footer i::before { content: "\F135"; } /* Bootstrap bi-arrow-right-short */

    .v6-all-footer { 
        margin-top: 20px; 
    }
    .v6-btn-premium {
        width: 100%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #024e6e;
        color: #fff;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 800;
        text-decoration: none !important;
        gap: 8px;
    }
}
