/* ====== SIDEMENU & SEARCH MODAL ====== */
.sidemenu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1040;
}
.sidemenu {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 16px rgba(0,0,0,0.08);
    z-index: 1050;
    transition: left 0.3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: block;
}
.sidemenu-header {
    border-bottom: 1px solid #eee;
}
.sidemenu-link {
    display: block;
    padding: 18px 28px;
    color: #222;
    font-size: 1.15rem;
    font-weight: 500;
    border-bottom: 1px solid #f3f3f3;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.sidemenu-link:hover {
    background: #f8f9fa;
    color: #0d6efd;
}
.sidemenu .btn-close {
    font-size: 1.3rem;
}
.modal-content.bg-transparent {
    background: transparent !important;
    box-shadow: none;
}
.modal-body form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    padding: 0.5rem 1rem;
}
/* ======= HEADER CUSTOM ======= */
.header-top-menu a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.header-top-menu a:hover {
    color: #0d6efd;
}
.header-top-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    font-size: 1.2rem;
    margin-left: 2px;
    margin-right: 2px;
    opacity: 0.92;
    transition: opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.header-top-social .social-icon:hover {
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.main-navbar {
    border-bottom: 1.5px solid #ececec;
    z-index: 100;
}
.main-navbar .navbar-brand {
    font-size: 1.7rem;
    letter-spacing: 0.5px;
}
.main-menu .nav-link {
    color: #181818 !important;
    font-size: 1.15rem;
    padding: 0.75rem 0.75rem !important;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}
.main-menu .nav-link:hover, .main-menu .nav-link.active {
    background: #f3f3f3;
    color: #0d6efd !important;
}
.main-menu .dropdown-menu {
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-size: 1rem;
}
.main-navbar .btn-warning {
    border-radius: 7px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(255,193,7,0.08);
}
.main-navbar .btn-link {
    color: #222;
    border-radius: 7px;
    transition: background 0.2s;
}
.main-navbar .btn-link:hover {
    background: #f3f3f3;
}
@media (max-width: 991.98px) {
    .main-menu {
        gap: 0 !important;
    }
    .main-navbar .navbar-brand {
        font-size: 1.2rem;
    }
}
/* ========================================
   Haber Portalı - Birleştirilmiş Stil Dosyası
   ======================================== */

/* ========================================
   1. CSS VARIABLES & ROOT
   ======================================== */
:root {
    /* Primary Colors */
    --primary-red: #c8102e;
    --primary-dark: #1a1a1a;
    --primary-blue: #0066cc;
    --primary-color: #0d6efd;
    
    /* Secondary Colors */
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    
    /* Text & Background */
    --text-gray: #333333;
    --border-gray: #e0e0e0;
    --bg-light: #f8f9fa;
}

/* ========================================
   2. GLOBAL STYLES
   ======================================== */
body {
    font-family: 'Segoe UI', 'Roboto', Tahoma, Geneva, Verdana, Arial, sans-serif;
    color: var(--text-gray);
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   3. NAVBAR COMPONENT
   ======================================== */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

/* ========================================
   4. SONDAKIKA (BREAKING NEWS) BAND
   ======================================== */
.sondakika-band {
    background: linear-gradient(90deg, #c8102e 0%, #e63946 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.sondakika-badge,
.breaking-news {
    background-color: #ffffff;
    color: #c8102e;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.sondakika-slider,
.breaking-news-slider {
    overflow: hidden;
    position: relative;
    height: 40px;
    white-space: nowrap;
}

.sondakika-track {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
    align-items: center;
    height: 100%;
}

.sondakika-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.sondakika-item:hover {
    opacity: 0.8;
}

.sondakika-item i {
    font-size: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   5. SECTION HEADERS
   ======================================== */
.section-header {
    border-left: 5px solid var(--primary-red);
    padding-left: 15px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
    padding-top: 10px;
    padding-bottom: 10px;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header i {
    color: var(--primary-red);
    margin-right: 8px;
}

.section-title h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

/* ========================================
   6. MANŞET (FEATURED) SLIDER
   ======================================== */
.manset-section {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: relative;
    height: 100%;
}

.manset-slider-wrapper {
    position: relative;
    height: 600px;
}

.manset-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.manset-slide.active {
    opacity: 1;
    z-index: 2;
}

.manset-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.manset-slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.manset-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manset-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.manset-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 80px 20px 80px;
    z-index: 5;
}

.manset-slide-content h3 {
    color: #ffd700;
    font-size: 3rem;
    font-weight: 700;
    line-height: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.manset-slide-numbers {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.manset-slide-number {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.manset-slide-number:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.manset-slide-number.active {
    background: var(--primary-red);
    transform: scale(1.1);
}

.featured-main {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.featured-main img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.featured-main .card-img-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(200, 16, 46, 0.8);
    border-radius: 50%;
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-red);
}

.carousel-indicators {
    bottom: 15px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 4px;
}

.carousel-indicators button.active {
    background-color: var(--primary-red);
}

/* ========================================
   7. YATAY MANŞET (Horizontal Featured News)
   ======================================== */

.yatay-manset-wrapper {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
}

.yatay-manset-container {
    display: flex;
    height: 450px;
    position: relative;
    overflow: hidden;
}

/* Sol Taraf - Görsel */
.yatay-manset-image-side {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.yatay-manset-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    display: block;
    text-decoration: none;
}

.yatay-manset-slide.active {
    opacity: 1;
    z-index: 2;
}

.yatay-manset-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yatay-manset-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    color: #666;
}

.yatay-manset-placeholder i {
    font-size: 100px;
}

/* Numaralı Kontroller */
.yatay-manset-numbers {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.manset-number {
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manset-number:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.manset-number.active {
    background: rgba(220, 38, 38, 0.95);
    transform: scale(1.1);
}

/* Sağ Taraf - Başlık (Kırmızı Gradient) */
.yatay-manset-title-side {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0) 10%, rgba(215, 40, 40, 2) 30%, rgba(193, 18, 31, 2) 72%, #d30c1b 100%);
    display: flex;
    text-align: right;
    justify-content: flex-end;
    padding: 3rem 3rem 3rem 6rem;
    z-index: 3;
}

.yatay-manset-title-content {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    width: 65%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    text-decoration: none;
}

.yatay-manset-title-content.active {
    opacity: 1;
    z-index: 2;
}

.yatay-manset-title-content h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.yatay-manset-title-content:hover h2 {
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

/* ========================================
   8. YATAY MANŞET ALTI (Horizontal Featured Below)
   ======================================== */

.yatay-manset-alti-section {
    margin-top: 2rem;
    position: relative;
}

.yatay-manset-alti-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.yatay-manset-alti-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.yatay-manset-alti-slider::-webkit-scrollbar {
    display: none;
}

.yatay-manset-alti-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
}

.yatay-manset-alti-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.yatay-manset-alti-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.yatay-manset-alti-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.yatay-manset-alti-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.yatay-manset-alti-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yatay-manset-alti-card:hover .yatay-manset-alti-image img {
    transform: scale(1.05);
}

.yatay-manset-alti-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.yatay-manset-alti-content {
    padding: 1rem;
}

.yatay-manset-alti-content h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yatay-manset-alti-card:hover .yatay-manset-alti-content h5 {
    color: var(--primary-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav i {
    font-size: 1.2rem;
}

/* ========================================
   9. SPOT HABERLER (SPOTLIGHT NEWS)
   ======================================== */
.spot-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.spot-card {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.spot-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.spot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spot-card:hover .spot-image img {
    transform: scale(1.1);
}

.spot-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-red);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.spot-content {
    padding: 15px;
}

.spot-category {
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.spot-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    min-height: 44px;
}

.spot-content h4 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.spot-content h4 a:hover {
    color: var(--primary-red);
}

.spot-meta {
    color: #777;
    font-size: 12px;
}

/* ========================================
   8. GÜNDEM (AGENDA) LIST
   ======================================== */
.gundem-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: 600px;
    display: flex;
    flex-direction: column;
}

.gundem-section .section-header {
    margin-bottom: 15px;
}

.gundem-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 5px;
}

.gundem-list::-webkit-scrollbar {
    display: none;
}

.gundem-item {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gundem-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.gundem-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    padding: 12px;
}

.gundem-image {
    flex: 0 0 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.gundem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gundem-item:hover .gundem-image img {
    transform: scale(1.1);
}

.gundem-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.gundem-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gundem-item:hover .gundem-content h5 {
    color: var(--primary-red);
}

/* ========================================
   9. MANŞET ALTI (BELOW HEADLINE) CARDS
   ======================================== */
.manset-alti-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.manset-alti-card {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.manset-alti-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.manset-alti-image {
    height: 150px;
    overflow: hidden;
}

.manset-alti-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.manset-alti-card:hover .manset-alti-image img {
    transform: scale(1.08);
}

.manset-alti-content {
    padding: 12px;
}

.alti-category {
    color: var(--primary-blue);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.manset-alti-content h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.manset-alti-content h6 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.manset-alti-content h6 a:hover {
    color: var(--primary-red);
}

/* ========================================
   10. NEWS CARDS (GENERAL)
   ======================================== */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-card .news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

/* ========================================
   11. NEWS DETAIL PAGE
   ======================================== */
.news-detail h1 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

.news-meta {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
}

.news-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-meta a:hover {
    text-decoration: underline;
}

.news-image img {
    border-radius: 10px;
}

.news-summary {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

.news-content h2, .news-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-content p {
    margin-bottom: 1rem;
}

/* Social Share */
.social-share .btn {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
}

/* Comments Section */
.comments-section .card {
    border-left: 3px solid var(--primary-color);
}

.comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* ========================================
   12. SIDEBAR WIDGETS
   ======================================== */
.widget-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-top: 3px solid var(--primary-red);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-title i {
    color: var(--primary-red);
    margin-right: 8px;
}

/* Most Viewed Widget */
.most-viewed-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
    transition: background-color 0.3s;
}

.most-viewed-item:last-child {
    border-bottom: none;
}

.most-viewed-item:hover {
    background-color: #f8f9fa;
    padding-left: 8px;
    margin-left: -8px;
    padding-right: 8px;
    margin-right: -8px;
}

.most-viewed-number {
    background-color: var(--primary-red);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.most-viewed-content {
    flex: 1;
}

.most-viewed-content h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.most-viewed-content h6 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.most-viewed-content h6 a:hover {
    color: var(--primary-red);
}

.most-viewed-meta {
    color: #888;
    font-size: 11px;
}

/* Category Widget */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    padding-left: 8px;
    background-color: #f8f9fa;
    margin-left: -8px;
    padding-right: 8px;
    margin-right: -8px;
}

.category-item a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s;
}

.category-item:hover a {
    color: var(--primary-red);
}

.category-count {
    background-color: #f0f0f0;
    color: var(--primary-dark);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* ========================================
   13. WEATHER WIDGET
   ======================================== */
/* Weather Widget in Sidebar */
.weather-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-top-color: #667eea;
}

.weather-widget .widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.3);
}

.weather-main-cities {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.weather-main-card {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
}

.weather-main-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.weather-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.weather-city-name {
    font-size: 16px;
    font-weight: 700;
}

.weather-city-temp {
    font-size: 24px;
    font-weight: 700;
}

.weather-main-body {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.weather-description {
    font-size: 14px;
    text-transform: capitalize;
}

.weather-widget .btn-light {
    background: rgba(255,255,255,0.9);
    border: none;
    color: #667eea;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s;
}

.weather-widget .btn-light:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.weather-updated {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
}

/* Weather Page Header */
.weather-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.city-selector {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.current-weather {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.current-weather h2 {
    font-size: 3rem;
    font-weight: 700;
}

.current-weather .weather-icon {
    width: 120px;
    height: 120px;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.weather-detail-item {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.weather-detail-item i {
    font-size: 24px;
    margin-bottom: 8px;
}

.forecast-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.forecast-section h4 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #333;
}

.forecast-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.forecast-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
}

.forecast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.forecast-date {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

.forecast-date .text-muted {
    color: #666 !important;
    font-size: 12px;
    margin-top: 2px;
}

.forecast-icon {
    width: 60px;
    height: 60px;
    margin: 10px auto;
    display: block;
}

.forecast-temp {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 10px 0;
}

.forecast-card .text-muted {
    color: #666 !important;
    font-size: 12px;
    line-height: 1.4;
}

.forecast-card .mt-2 {
    margin-top: 12px !important;
    font-size: 13px;
    color: #555;
}

/* ========================================
   14. CURRENCY WIDGET
   ======================================== */
.currency-widget {
    border-top-color: #f39c12;
}

.currency-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.currency-item:hover {
    background: #e9ecef;
    border-left-color: #f39c12;
    transform: translateX(3px);
}

.currency-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.currency-icon {
    font-size: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.currency-details {
    display: flex;
    flex-direction: column;
}

.currency-code {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.currency-name {
    font-size: 12px;
    color: #6c757d;
}

.currency-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.currency-rate {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.currency-try {
    font-size: 14px;
    color: #6c757d;
}

.currency-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.currency-change.up {
    background: #d4edda;
    color: #155724;
}

.currency-change.down {
    background: #f8d7da;
    color: #721c24;
}

.currency-change i {
    margin-right: 2px;
}

/* ========================================
   15. NEWSPAPER WIDGET
   ======================================== */
.newspaper-widget {
    border-top-color: #e74c3c;
}

.newspaper-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 10px 0;
}

.newspaper-item {
    position: relative;
}

.newspaper-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.newspaper-link:hover {
    transform: translateY(-5px);
}

.newspaper-cover,
.newspaper-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

.newspaper-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #6c757d;
}

.newspaper-info {
    margin-top: 8px;
}

.newspaper-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newspaper-date {
    font-size: 10px;
    color: #6c757d;
    margin-top: 2px;
}

.newspaper-download {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

#newspaperSlider .carousel-control-prev,
#newspaperSlider .carousel-control-next {
    width: 30px;
    height: 30px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 40%;
}

#newspaperSlider .carousel-control-prev {
    left: -10px;
}

#newspaperSlider .carousel-control-next {
    right: -10px;
}

#newspaperSlider .carousel-control-prev i,
#newspaperSlider .carousel-control-next i {
    font-size: 18px;
    color: #ffffff;
}

#newspaperSlider .carousel-indicators {
    position: relative;
}

/* ========================================
   16. AUTHORS WIDGET
   ======================================== */
.authors-widget {
    border-top-color: #3498db;
}

.authors-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.author-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.author-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.author-link {
    display: flex;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 36px;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-bio {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 8px;
}

.author-news-count {
    font-size: 12px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 8px;
}

.author-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

/* ========================================
   17. HOMEPAGE SLIDERS (AUTHORS & NEWSPAPERS)
   ======================================== */
.homepage-authors-section, 
.homepage-newspapers-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.authors-slider-wrapper, 
.newspapers-slider-wrapper {
    position: relative;
    margin-top: 20px;
}

.authors-slider, 
.newspapers-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 40px;
    scrollbar-width: none;
}

.authors-slider::-webkit-scrollbar, 
.newspapers-slider::-webkit-scrollbar {
    display: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    border: none;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary-dark);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Author Slide Cards */
.author-slide-card {
    min-width: 300px;
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.author-slide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: var(--primary-red);
}

.author-slide-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.author-slide-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-red);
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4444 100%);
}

.author-slide-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-gray);
    color: var(--text-gray);
    font-size: 36px;
}

.author-slide-info {
    flex: 1;
    text-align: left;
}

.author-slide-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.author-slide-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Newspaper Slide Cards */
.newspaper-slide-card {
    min-width: 180px;
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.newspaper-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: var(--primary-red);
}

.newspaper-slide-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.newspaper-slide-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.newspaper-slide-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-gray);
    font-size: 48px;
}

.newspaper-slide-title {
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-dark);
}

/* ========================================
   18. AUTHOR PROFILE PAGE
   ======================================== */
.author-profile-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}

.author-profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.author-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 64px;
}

.author-profile-info {
    flex: 1;
    color: #ffffff;
}

.author-profile-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.author-profile-email {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.author-profile-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.stat-item.featured {
    background: #ffc107;
    color: #000;
}

.author-profile-bio {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
}

.author-profile-bio h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.author-profile-bio p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.author-profile-social {
    padding: 20px 30px;
}

.author-profile-social h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #ffffff;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin {
    background: #0077b5;
}

/* ========================================
   19. ADMIN LOGIN PAGE
   ======================================== */
body.admin-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    max-width: 400px;
    width: 100%;
}

.login-card .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.login-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    padding: 2rem;
    text-align: center;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px;
    font-weight: 600;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========================================
   20. GENERAL CARDS & COMPONENTS
   ======================================== */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.card-header {
    font-weight: 600;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: var(--light-color);
}

.list-group-item:last-child {
    border-bottom: none;
}

/* ========================================
   21. BADGES & LABELS
   ======================================== */
.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

/* Border Variants */
.border-left-primary {
    border-left: 4px solid var(--primary-color) !important;
}

.border-left-warning {
    border-left: 4px solid var(--warning-color) !important;
}

.border-left-info {
    border-left: 4px solid var(--info-color) !important;
}

.border-left-danger {
    border-left: 4px solid var(--danger-color) !important;
}

/* ========================================
   22. BREADCRUMB & NAVIGATION
   ======================================== */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 0.5rem;
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-size: 0.95rem;
}

/* ========================================
   23. PAGINATION
   ======================================== */
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    color: #495057;
    border: 2px solid #e9ecef;
    background-color: #fff;
    border-radius: 8px;
    margin: 0;
    padding: 0.6rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
}

.pagination .page-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    background-color: #fff;
    transform: none;
    box-shadow: none;
}

/* ========================================
   24. FOOTER
   ======================================== */
footer {
    margin-top: auto;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* ========================================
   25. ANIMATIONS
   ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card, .card {
    animation: fadeIn 0.5s ease;
}

/* Loading Spinner */
.loading-spinner,
.spinner-border {
    border: 3px solid var(--border-gray);
    border-top: 3px solid var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ========================================
   27. UTILITY CLASSES
   ======================================== */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.object-fit-cover {
    object-fit: cover;
}

/* ========================================
   27. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .manset-item,
    .featured-main {
        height: 400px;
    }
    
    .manset-caption h2 {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .sondakika-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .manset-item,
    .featured-main {
        height: 350px;
    }
    
    .manset-caption {
        padding: 25px 20px 15px;
    }
    
    .manset-caption h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .sondakika-slider {
        height: 35px;
    }
    
    .sondakika-item {
        font-size: 13px;
    }
    
    .manset-item,
    .featured-main {
        height: 300px;
    }
    
    .manset-caption h2 {
        font-size: 20px;
    }
    
    .manset-summary {
        display: none;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .section-header h3 {
        font-size: 16px;
    }
    
    .spot-image {
        height: 150px;
    }
    
    .gundem-image {
        height: 100px;
    }
    
    .news-card .news-image {
        height: 180px;
    }
    
    .news-detail h1 {
        font-size: 1.75rem;
    }
    
    .news-content {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Yatay Manşet Responsive */
    .yatay-manset-container {
        flex-direction: column;
        height: auto;
    }
    
    .yatay-manset-image-side {
        flex: 0 0 100%;
        height: 300px;
    }
    
    .yatay-manset-title-side {
        flex: 0 0 100%;
        min-height: 180px;
        padding: 2rem;
    }
    
    .yatay-manset-title-content h2 {
        font-size: 1.5rem;
    }
    
    .manset-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .yatay-manset-numbers {
        flex-direction: row;
        left: 50%;
        top: auto;
        bottom: 15px;
        transform: translateX(-50%);
        gap: 8px;
    }
    
    .yatay-manset-alti-image {
        height: 160px;
    }
    
    .yatay-manset-alti-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }
    
    .yatay-manset-alti-slider-wrapper {
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    /* Manşet ve Gündem Responsive */
    .manset-slider-wrapper {
        height: 400px;
    }
    
    .manset-slide-content h3 {
        font-size: 1.25rem;
    }
    
    .manset-slide-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gundem-section {
        height: auto;
        margin-top: 20px;
    }
    
    .gundem-image {
        flex: 0 0 100px;
        height: 70px;
    }
    
    .gundem-content h5 {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .yatay-manset-alti-slide {
        flex: 0 0 calc(100% - 10px);
        min-width: 220px;
    }
    
    .yatay-manset-alti-slider-wrapper {
        padding: 0 35px;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    .manset-slider-wrapper {
        height: 350px;
    }
    
    .manset-slide-content {
        padding: 60px 15px 15px;
    }
    
    .manset-slide-content h3 {
        font-size: 1.1rem;
    }
    
    .manset-slide-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .gundem-link {
        flex-direction: column;
    }
    
    .gundem-image {
        flex: 0 0 auto;
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .sondakika-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .manset-item,
    .featured-main {
        height: 250px;
    }
    
    .manset-caption h2 {
        font-size: 18px;
    }
    
    .spot-content h4 {
        font-size: 14px;
        min-height: auto;
    }
    
    .news-card .card-title {
        font-size: 1rem;
        min-height: auto;
    }
    
    .social-share .btn {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }
}

/* ====== FEATURED CATEGORIES SECTION ====== */
.featured-category-section {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    padding: 20px;
}

.featured-category-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.featured-category-section .section-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}



.featured-category-section .section-header i {
    color: #dc3545;
}

.view-all-link {
    color: #0d6efd;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

/* Main Card (Left) */
.featured-category-main-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.featured-category-main-link:hover .featured-category-main-card {
    transform: translateY(-4px);
}

.featured-category-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-category-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-category-main-link:hover .featured-category-main-image img {
    transform: scale(1.05);
}

.featured-category-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    color: #fff;
}

.featured-category-badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.featured-category-main-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-category-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #ddd;
}

.featured-category-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Small Cards Container (Right) */
.featured-category-small-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
}

/* Small Card Item */
.featured-category-small-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 165px;
}

.featured-category-small-link:hover .featured-category-small-card {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.featured-category-small-image {
    flex: 0 0 100px;
    overflow: hidden;
    background: #f0f0f0;
}

.featured-category-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-category-small-link:hover .featured-category-small-image img {
    transform: scale(1.08);
}

.featured-category-small-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
}

.featured-category-small-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.25;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-category-small-meta {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-category-main-overlay {
        padding: 20px 15px 15px;
    }
    
    .featured-category-main-overlay h3 {
        font-size: 1.2rem;
    }
    
    .featured-category-small-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .featured-category-small-card {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .featured-category-section .section-header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .featured-category-section .row {
        flex-direction: column;
    }
    
    .featured-category-main-card {
        height: 300px;
    }
    
    .featured-category-small-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        height: auto;
    }
    
    .featured-category-small-card {
        height: 140px;
    }
}

@media (max-width: 576px) {
    .featured-category-main-card {
        height: 250px;
    }
    
    .featured-category-main-overlay h3 {
        font-size: 1rem;
    }
    
    .featured-category-small-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .featured-category-small-card {
        height: 120px;
    }
    
    .featured-category-small-image {
        flex: 0 0 80px;
    }
    
    .featured-category-small-content h5 {
        font-size: 0.85rem;
    }
    
    .featured-category-meta {
        font-size: 0.8rem;
    }
}

