:root {
    --primary: #1a3a5f;
    --accent: #ff6b35;
    --bg: #f8fafc;
    --text: #1e293b;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

header { background: var(--primary); color: white; padding: 50px 20px; text-align: center; border-bottom: 6px solid var(--accent); }
.logo { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: white; text-decoration: none; font-weight: bold; }
.logo span { color: var(--accent); }

.container { max-width: 1200px; margin: 40px auto; display: flex; gap: 30px; padding: 0 20px; }
.main-content { flex: 3; }
.sidebar { flex: 1; }

.section-title { font-family: 'Playfair Display', serif; margin-bottom: 30px; color: var(--primary); font-size: 2rem; }

/* 2'Lİ İLAN GRID */
.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.job-card { background: var(--white); padding: 25px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; transition: 0.3s; }
.job-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }

.loc-badge { background: #dcfce7; color: #166534; font-size: 0.75rem; padding: 5px 12px; border-radius: 50px; font-weight: bold; text-transform: uppercase; }
.job-card h3 { margin: 15px 0 8px 0; color: var(--primary); font-size: 1.25rem; }
.company-name { color: #64748b; font-weight: 600; font-size: 0.95rem; }
.salary-range { color: #059669; font-weight: 800; margin: 12px 0; display: block; }
.summary-text { font-size: 0.9rem; color: #475569; margin-bottom: 20px; }
.view-btn { display: block; background: var(--primary); color: white; text-align: center; padding: 14px; text-decoration: none; border-radius: 10px; font-weight: bold; }
.view-btn:hover { background: var(--accent); }

/* İçerik Sayfası */
.content-wrapper { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.meta-bar { background: #f1f5f9; padding: 15px; border-radius: 10px; margin: 20px 0; font-size: 0.95rem; }
.full-text h2 { margin: 25px 0 15px 0; color: var(--primary); }
.back-btn { display: inline-block; margin-top: 30px; color: var(--primary); font-weight: bold; text-decoration: none; }

/* Sidebar */
.widget { background: white; padding: 25px; border-radius: 16px; margin-bottom: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.cat-list { list-style: none; }
.cat-list li { border-bottom: 1px solid #f1f5f9; padding: 12px 0; }
.cat-list a { text-decoration: none; color: var(--text); font-weight: 500; transition: 0.2s; }
.cat-list a:hover { color: var(--accent); padding-left: 5px; }
.ad-placeholder { height: 250px; background: #f8fafc; border: 2px dashed #cbd5e1; display: flex; align-items: center; justify-content: center; color: #94a3b8; border-radius: 10px; margin-top: 10px; }

/* Footer */
footer { background: var(--primary); color: white; padding: 60px 20px; text-align: center; margin-top: 60px; }
.footer-nav { margin-top: 20px; }
.footer-nav a { color: #cbd5e1; text-decoration: none; margin: 0 15px; font-size: 0.9rem; }

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .container { flex-direction: column; }
    .jobs-grid { grid-template-columns: 1fr; }
    header { padding: 30px 15px; }
    .logo { font-size: 2rem; }
}