/* SNR Haber Gelişmiş Tasarım & Hizalama Sistemi */

/* 1. Finans & Canlı Piyasa Barı */
.snr-top-bar {
    background: #090e17;
    color: #cbd5e1;
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}
.snr-top-bar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.snr-top-item {
    display: inline-flex;
    align-items: center;
    margin-right: 18px;
    font-weight: 500;
    white-space: nowrap;
}
.snr-top-item strong {
    color: #f8fafc;
    margin-right: 5px;
}
.snr-rate-up {
    color: #10b981;
    font-weight: 600;
    margin-left: 4px;
}
.snr-rate-down {
    color: #ef4444;
    font-weight: 600;
    margin-left: 4px;
}
.snr-v-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0 14px;
    vertical-align: middle;
}
.snr-top-socials {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.snr-top-soc-btn {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1 !important;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.snr-top-soc-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}
.snr-top-soc-btn.fb:hover { background: #1877f2; }
.snr-top-soc-btn.tw:hover { background: #1da1f2; }
.snr-top-soc-btn.ig:hover { background: #e1306c; }
.snr-top-soc-btn.li:hover { background: #0a66c2; }
.snr-top-soc-btn.yt:hover { background: #ff0000; }
.snr-top-soc-btn.wa:hover { background: #25d366; }

/* 2. Orta Logo & Arama Barı */
.snr-mid-bar {
    background: #ffffff;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}
.snr-mid-bar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.snr-brand-logo {
    display: inline-block;
    text-decoration: none;
}
.snr-brand-logo img {
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}
.snr-search-form {
    display: flex;
    align-items: center;
    width: 320px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 25px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.snr-search-form:focus-within {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}
.snr-search-input {
    border: none;
    background: transparent;
    padding: 8px 16px;
    font-size: 13px;
    flex: 1;
    outline: none;
    color: #1e293b;
}
.snr-search-btn {
    border: none;
    background: #e11d48;
    color: #ffffff;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.snr-search-btn:hover {
    background: #be123c;
}

/* 3. Ana Menü Bandı (Nav Band) */
.snr-nav-band {
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    z-index: 99;
}
.snr-menu-list {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    white-space: nowrap !important;
}
.snr-menu-item {
    position: relative;
}
.snr-menu-link {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 14px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    color: #1e293b !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: color 0.2s, background 0.2s;
    border-bottom: 3px solid transparent;
    height: 48px;
}
.snr-menu-link:hover,
.snr-menu-link.active {
    color: #e11d48 !important;
    border-bottom-color: #e11d48 !important;
    text-decoration: none !important;
}
.snr-menu-link.highlight {
    color: #e11d48 !important;
    font-weight: 800 !important;
}

/* 4. Flaş Haber Kayan Bant (Ticker) */
.snr-ticker-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
}
.snr-ticker-flex {
    display: flex;
    align-items: center;
}
.snr-ticker-badge {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
    flex-shrink: 0;
    z-index: 2;
}
.snr-pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    background: #ffffff;
    border-radius: 50%;
    animation: snrPulse 1.4s infinite;
}
@keyframes snrPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}
.snr-ticker-overflow {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding-left: 20px;
    flex: 1;
}
.snr-ticker-track {
    display: inline-block;
    animation: snrTicker 35s linear infinite;
}
.snr-ticker-track:hover {
    animation-play-state: paused;
}
@keyframes snrTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.snr-ticker-news-link {
    color: #1e293b;
    font-weight: 600;
    font-size: 13px;
    margin-right: 32px;
    text-decoration: none;
    transition: color 0.2s;
}
.snr-ticker-news-link:hover {
    color: #e11d48;
    text-decoration: none;
}
.snr-ticker-badge-time {
    color: #64748b;
    font-size: 11px;
    margin-right: 6px;
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 3px;
}

/* 5. Üst 5'li Haber Sliderı Kartları */
.snr-top5-card {
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.snr-top5-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.snr-top5-thumb-wrap {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: #0f172a;
}
.snr-top5-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.snr-top5-card:hover .snr-top5-thumb {
    transform: scale(1.05);
}
.snr-top5-cat-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e11d48;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}
.snr-top5-body {
    padding: 10px 12px;
}
.snr-top5-title {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.snr-top5-title a {
    color: #1e293b;
    text-decoration: none;
}
.snr-top5-title a:hover {
    color: #e11d48;
}

/* 6. Sidebar Widget Stilleri & Hizalama */
.wrapper__list__article {
    margin-bottom: 28px !important;
}
.wrapper__list__article .border_section {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    border-left: 4px solid #e11d48 !important;
    padding-left: 10px !important;
}

/* Sosyal Medya Izgarası */
.wrap__social__media {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 15px !important;
}
.wrap__social__media a {
    text-decoration: none !important;
}
.social__media__widget {
    border-radius: 6px !important;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: #ffffff !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.social__media__widget:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
.social__media__widget-counter {
    font-weight: 700 !important;
    font-size: 13px !important;
}
.social__media__widget-name {
    font-size: 11px !important;
    opacity: 0.9 !important;
}

/* Trend Başlıklar (Etiket Bulutu) */
.snr-tag-cloud {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 15px !important;
    padding: 0 !important;
    list-style: none !important;
}
.snr-tag-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
}
.snr-tag-pill:hover {
    background: #e11d48 !important;
    border-color: #e11d48 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.25) !important;
}

/* Sponsor & Reklam Kutusu */
.snr-ad-card {
    background: linear-gradient(145deg, #0f172a, #1e293b) !important;
    border-radius: 8px !important;
    padding: 24px 20px !important;
    text-align: center !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    margin-top: 15px !important;
}
.snr-ad-badge {
    background: rgba(225, 29, 72, 0.2) !important;
    color: #fb7185 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    padding: 3px 10px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
}
.snr-ad-title {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}
.snr-ad-desc {
    color: #94a3b8 !important;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
}
.snr-ad-btn {
    background: linear-gradient(135deg, #e11d48, #be123c) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    padding: 9px 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.2s ease !important;
}
.snr-ad-btn:hover {
    background: linear-gradient(135deg, #be123c, #9f1239) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.4) !important;
    text-decoration: none !important;
}

/* Sayfalama (Pagination) */
.pagination-area .pagination a {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    margin: 0 4px !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
    text-align: center !important;
    display: inline-block !important;
    transition: all 0.2s ease !important;
}
.pagination-area .pagination a.active,
.pagination-area .pagination a:hover {
    background: #e11d48 !important;
    border-color: #e11d48 !important;
    color: #ffffff !important;
}

/* 7. Zengin Footer Stilleri */
.snr-rich-footer {
    background: #0b1120;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.65;
    position: relative;
}
.snr-footer-newsletter-wrap {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 38px 0;
}
.snr-footer-newsletter-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}
.snr-footer-newsletter-sub {
    color: #94a3b8;
    font-size: 13.5px;
    margin-bottom: 0;
}
.snr-newsletter-form {
    display: flex;
    max-width: 480px;
    margin-left: auto;
}
.snr-newsletter-input {
    background: #ffffff;
    border: none;
    border-radius: 6px 0 0 6px;
    padding: 12px 18px;
    font-size: 14px;
    flex: 1;
    color: #1e293b;
    outline: none;
}
.snr-newsletter-btn {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    padding: 0 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.snr-newsletter-btn:hover {
    background: linear-gradient(135deg, #be123c, #9f1239);
}

.snr-footer-main {
    padding: 55px 0 40px 0;
}
.snr-footer-logo-img {
    max-height: 52px;
    max-width: 210px;
    object-fit: contain;
    margin-bottom: 18px;
}
.snr-footer-about {
    font-size: 13.5px;
    color: #94a3b8;
    margin-bottom: 20px;
}
.snr-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.snr-footer-contact-list li {
    margin-bottom: 9px;
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    color: #cbd5e1;
}
.snr-footer-contact-list li i {
    color: #e11d48;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}
.snr-footer-title {
    color: #ffffff;
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.3px;
}
.snr-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    background: #e11d48;
    border-radius: 2px;
}
.snr-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.snr-footer-links li {
    margin-bottom: 10px;
}
.snr-footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}
.snr-footer-links li a i {
    font-size: 10px;
    margin-right: 8px;
    color: #475569;
    transition: transform 0.2s;
}
.snr-footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.snr-footer-links li a:hover i {
    color: #e11d48;
}

/* Footer Mini Haberler */
.snr-footer-news-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.snr-footer-news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.snr-footer-news-thumb {
    width: 72px;
    height: 52px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}
.snr-footer-news-content {
    flex: 1;
}
.snr-footer-news-title {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s;
}
.snr-footer-news-title:hover {
    color: #e11d48;
    text-decoration: none;
}
.snr-footer-news-date {
    font-size: 11.5px;
    color: #64748b;
    display: flex;
    align-items: center;
}
.snr-footer-news-date i {
    margin-right: 5px;
    font-size: 11px;
}

/* Footer Sosyal Butonlar */
.snr-social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}
.snr-soc-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.snr-soc-btn:hover {
    transform: translateY(-3px);
    color: #ffffff;
}
.snr-soc-btn.fb:hover { background: #1877f2; }
.snr-soc-btn.tw:hover { background: #1da1f2; }
.snr-soc-btn.ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.snr-soc-btn.yt:hover { background: #ff0000; }
.snr-soc-btn.li:hover { background: #0a66c2; }
.snr-soc-btn.wa:hover { background: #25d366; }
.snr-soc-btn.tg:hover { background: #0088cc; }

/* Footer Güvenlik & Yayıncı Rozetleri */
.snr-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.snr-trust-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 11.5px;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
}
.snr-trust-badge i {
    color: #10b981;
    margin-right: 6px;
    font-size: 13px;
}

/* Footer Alt Çubuk */
.snr-footer-bottom {
    background: #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 13px;
    color: #64748b;
}
.snr-footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.snr-footer-bottom a:hover {
    color: #ffffff;
}
