/* ==========================================================================
   BASINDA BİZ (HABERLER) SAYFASI ÖZEL STİLLERİ (basin.css)
   ========================================================================== */

/* 1. Header Alanı - Diğer sayfalarla uyumlu Gradyan */
.news-header {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #101827 0%, #006687 50%, #2DB84D 100%);
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.news-header-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.news-header-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
    opacity: 0.85;
}

/* 2. Haber Tablosu Konteyneri */
.news-table-container {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    margin-top: -40px; /* Header'ın içine hafif girmesi için */
    position: relative;
    z-index: 20;
}

/* 3. Tablo Stilleri */
.news-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.news-table thead tr {
    background: #f8fafc;
    border-bottom: 1.5px solid #f1f5f9;
}

.news-table th {
    padding: 20px 24px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.3s ease;
}

.news-table tbody tr:hover {
    background: #fdfdfd;
}

.news-table td {
    padding: 20px 24px;
    vertical-align: middle;
}

/* Haber Başlığı */
.news-row-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

/* Kanal Etiketi */
.news-badge {
    display: inline-flex;
    padding: 6px 14px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Tarih */
.news-date {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
}

/* Habere Git Butonu (Sığdırılmış) */
.news-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #007AFF;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap; /* Aşağı taşmayı önler */
    transition: all 0.3s ease;
}

.news-action-link:hover {
    color: #0056b3;
    transform: translateX(3px);
}

.news-action-link span {
    font-size: 16px;
}

@media (max-width: 768px) {
    .news-header-title { font-size: 2.5rem; }
    .news-table th:nth-child(2), .news-table td:nth-child(2) { display: none; } /* Mobilde kanal gizlenebilir */
}
