/* SABAH.COM.TR ANALİZLİ STİL */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
    --sabah-red: #d60000;
    --sabah-dark: #14233a;
    --bg-color: #ececec;
    --border-color: #e1e1e1;
}

body { font-family: 'Roboto', sans-serif; background-color: var(--bg-color); color: var(--sabah-dark); font-size: 16px; overflow-x: hidden; margin:0; padding:0; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

/* LAYOUT CONTAINER */
.container-sabah { width: 100%; padding-right: 10px; padding-left: 10px; margin-right: auto; margin-left: auto; }
@media (min-width: 1200px) { .container-sabah { width: 1138px; max-width: 1138px; } }

/* HEADER */
header { background: #fff; box-shadow: 0 0 7px 0 rgba(0,0,0,.4); position: relative; z-index: 999; }
.top-bar { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; border-bottom: 1px solid #eee; }
.logo img { width: 170px; height: auto; }
.ad-header { text-align: center; width: 100%; }

/* NAV MENU (Kırmızı) */
.nav-bg { background-color: var(--sabah-red); height: 48px; }
.nav-menu { display: flex; height: 100%; align-items: center; }
.nav-menu li { height: 100%; }
.nav-menu li a { display: block; color: #fff; font-weight: 700; font-size: 14px; padding: 0 15px; line-height: 48px; text-transform: uppercase; }
.nav-menu li a:hover { background-color: #b00000; }
.nav-menu li.home-icon a { padding: 0 15px; font-size: 18px; }

/* MANŞET SLIDER (Swiper) */
.manset-wrapper { position: relative; margin-bottom: 20px; background:#fff; border:1px solid #ddd; padding:5px; }
.manset-img-container { position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 Aspect Ratio */ overflow: hidden; }
.manset-img-container img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.manset-title { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; padding: 40px 20px 20px; font-size: 28px; font-weight: 900; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); line-height: 1.2; }

/* YAN MANŞET (DİKEY LİSTE) */
.yan-manset-wrapper { background: #fff; border: 1px solid var(--border-color); height: 100%; }
.yan-manset-item { display: block; position: relative; border-bottom: 1px solid #eee; padding: 10px; transition: background 0.2s; }
.yan-manset-item:hover { background: #f9f9f9; }
.yan-manset-flex { display: flex; gap: 10px; align-items: flex-start; }
.yan-manset-img { width: 120px; height: 80px; object-fit: cover; flex-shrink: 0; }
.yan-manset-text { font-size: 14px; font-weight: 700; color: #000; line-height: 1.3; }

/* KAFŞET (Alt Küçük Kutu Haberleri) */
/* Sabah'taki figure.borderBox yapısı */
.news-box { background: #fff; border: 1px solid var(--border-color); margin-bottom: 20px; position: relative; }
.news-box a { display: block; }
.news-wrap { position: relative; display: block; width: 100%; padding-bottom: 58.76%; overflow: hidden; }
.news-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-box:hover .news-wrap img { transform: scale(1.05); }
.news-caption { height: 60px; padding: 10px; display: flex; align-items: center; border-top: 1px solid #eee; }
.news-caption span { font-size: 15px; font-weight: 700; color: #14233a; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Video Icon */
.video-icon { position: absolute; top: 10px; left: 10px; background: var(--sabah-red); color: white; padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: bold; z-index: 9; }

/* Footer */
footer { background: #fff; border-top: 5px solid var(--sabah-dark); padding: 40px 0; margin-top: 40px; }
.footer-links a { display: block; font-size: 14px; margin-bottom: 8px; color: #333; }
.footer-links a:hover { color: var(--sabah-red); text-decoration: underline; }

/* Responsive */
@media (max-width: 991px) {
    .nav-menu { display: none; } /* Mobilde menüyü gizle (basitlik için) */
    .top-bar { justify-content: center; }
}