/* --- Useful Links Page Styles --- */

/* Page Header (Diğer sayfalarla uyumlu) */
.page-header {
    background-color: #f8fafc; 
    padding: 120px 0 60px; 
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 40px;
}

.page-header .breadcrumb {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.page-header h1 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    color: #1a202c;
}

.links-list {
    max-width: 900px;
    margin: 0 auto 100px;
}

.link-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

/* İlk elemanın üstüne de çizgi ekleyelim (AquaTT tarzı ayrım) */
.link-item:first-child {
    border-top: 1px solid var(--border-color);
}

.link-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

.link-title:hover {
    color: #004499;
    text-decoration: underline;
}

.link-meta {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-desc {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 1100px) {
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 26px;
    }
    
    .link-title {
        font-size: 12px;
    }
}