/* css/index.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --light: #f8fafc;
    --border: #e2e8f0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f4f6;
    color: #334155;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === SAYFA DÜZENİ (GRID) === */
.main-layout {
    display: grid;
    grid-template-columns: 260px 1fr; /* Sol 260px Sabit - Sağ Esnek */
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
    align-items: start;
    flex: 1;
}

@media (max-width: 992px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar-wrapper { display: none; }
}