/* Kurumsal tema */
:root {
	--primary: #1f3a5f;
	--primary-dark: #152a45;
	--accent: #c9a227;
	--bg: #f3f4f7;
	--text: #1d2433;
	--muted: #5d6677;
	--border: #dde1e8;
	--radius: 4px;
	--shadow: 0 1px 3px rgba(20, 30, 50, .08);
	--shadow-hover: 0 4px 14px rgba(20, 30, 50, .14);
	--font: "Helvetica Neue", Arial, sans-serif;
	--heading-font: Georgia, "Times New Roman", serif;
}

.section-title, .article-page h1, .side-box h3 { font-weight: normal; }
.section-title:after { width: 100%; height: 1px; background: var(--border); }

.site-header { border-top: 4px solid var(--accent); }
.header-spacer { height: calc(var(--header-height) + 16px); }
.menu-toggle { border-radius: var(--radius); }
.navigation a { border-radius: 0; text-transform: uppercase; font-size: 13px; letter-spacing: .05em; }

/* İçerik + yan menü */
.home-layout {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 16px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 28px;
	align-items: start;
}
.home-content .container { padding: 0; max-width: none; }

.side-box {
	margin-top: 28px;
	padding: 18px 20px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-top: 3px solid var(--primary);
}
.side-box h3 { margin: 0 0 10px; font-family: var(--heading-font); font-size: 18px; }
.side-box ul { margin: 0; padding: 0; list-style: none; }
.side-box li a { display: block; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.side-box li:last-child a { border-bottom: 0; }
.side-box li a:before { content: "\203A  "; color: var(--accent); }
.side-box li a:hover { color: var(--primary); }
.side-about p { margin: 0; color: var(--muted); font-size: 14px; }

/* İlanlar: yatay kartlar */
.listing-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.listing-card:hover { transform: none; }
.listing-card a { display: grid; grid-template-columns: 110px 1fr; grid-template-rows: 1fr auto; column-gap: 14px; }
.listing-card img, .listing-noimage { grid-row: span 2; width: 110px; height: 140px; }
.listing-name { padding: 14px 12px 4px 0; font-family: var(--heading-font); font-size: 16px; font-weight: normal; }
.listing-phone { padding: 0 12px 14px 0; }

.article-card { border-left: 3px solid var(--accent); }
.footer { background: var(--primary-dark); border-top: 4px solid var(--accent); }

@media (max-width: 900px) {
	.home-layout { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 768px) {
	.listing-grid { grid-template-columns: 1fr; }
	.listing-card img, .listing-noimage { height: 120px; }
}
