/* ============================================
   HABER CMS - MODERN TEMA STİLLERİ
   ============================================ */

/* CSS Variables */
:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #1f2937;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid System */
.row {
    display: flex;
    gap: 30px;
}

.col-8 {
    flex: 0 0 calc(66.666% - 15px);
}

.col-4 {
    flex: 0 0 calc(33.333% - 15px);
}

/* ============================================
   HEADER - Modern Sticky Header
   ============================================ */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-300);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: var(--gray-300);
}

.header-social a:hover {
    color: var(--primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: 250px;
    display: block;
}

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a:hover h1 {
    transform: scale(1.02);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.main-nav li a {
    display: block;
    padding: 10px 18px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-nav li a:hover,
.main-nav li a.active {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.featured-section {
    margin-bottom: 50px;
}

.featured-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.featured-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.featured-slider {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-main {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-main:hover img {
    transform: scale(1.05);
}

.featured-main .featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
}

.featured-main .featured-overlay .category {
    display: inline-block;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.featured-main .featured-overlay h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.featured-main .featured-overlay h3 a {
    color: var(--white);
}

.featured-main .featured-overlay h3 a:hover {
    color: var(--primary);
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.featured-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex: 1;
    min-height: 140px;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-item:hover img {
    transform: scale(1.1);
}

.featured-item .featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--white);
}

.featured-item .category {
    display: inline-block;
    background: var(--secondary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.featured-item h4 {
    font-size: 14px;
    line-height: 1.4;
}

.featured-item h4 a {
    color: var(--white);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.featured-content .category {
    display: inline-block;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.featured-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-content h3 a {
    color: white;
}

.featured-content p {
    font-size: 14px;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   ARTICLE GRID
   ============================================ */
.articles-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.articles-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.article-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.category-badge a {
    color: inherit;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content h3 a:hover {
    color: var(--primary);
}

.excerpt {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-500);
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination .current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

.popular-list,
.category-list {
    list-style: none;
}

.popular-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.popular-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-list .thumb {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-list .info {
    flex: 1;
}

.popular-list .info a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-list .info a:hover {
    color: var(--primary);
}

.popular-list .views {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 5px;
}

.category-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    padding: 5px 0;
}

.category-list a:hover {
    color: var(--primary);
}

.category-list .count {
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--gray-500);
}

/* ============================================
   ARTICLE SINGLE
   ============================================ */
.article-single {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 40px;
}

.article-header {
    padding: 40px 40px 0;
}

.article-header .category-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
}

.article-header .article-meta {
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0;
}

.article-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 40px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--gray-700);
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h2,
.article-body h3 {
    margin: 35px 0 20px;
    color: var(--dark);
}

.article-body img {
    border-radius: var(--radius-sm);
    margin: 30px 0;
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--gray-100);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

/* Related Articles */
.related-articles {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-200);
}

.related-articles h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: var(--gray-300);
    margin-top: 60px;
}

.footer-main {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-widget ul li a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Simple Footer (current) */
.site-footer .container>p {
    padding: 30px 0;
    text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .featured-slider {
        grid-template-columns: 1fr;
    }

    .featured-main {
        min-height: 350px;
    }

    .featured-sidebar {
        flex-direction: row;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-8,
    .col-4 {
        flex: 0 0 100%;
    }

    .header-top {
        display: none;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo h1 {
        font-size: 24px;
    }

    .main-nav {
        width: 100%;
        margin-top: 15px;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li a {
        padding: 12px 15px;
        border-bottom: 1px solid var(--gray-200);
    }

    .menu-toggle {
        display: block;
    }

    .featured-slider {
        border-radius: var(--radius-sm);
    }

    .featured-sidebar {
        flex-direction: column;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 26px;
    }

    .article-header,
    .article-body {
        padding: 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        position: static;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-primary {
    background: var(--primary);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
    margin-bottom: 10px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '';
    margin-left: 10px;
    color: var(--gray-300);
    font-size: 18px;
}

.breadcrumb li a {
    color: var(--gray-500);
}

.breadcrumb li a:hover {
    color: var(--primary);
}

.breadcrumb li[aria-current="page"] {
    color: var(--dark);
    font-weight: 500;
}

/* ============================================
   SHARE BUTTONS
   ============================================ */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 25px 40px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.share-buttons span {
    font-weight: 600;
    color: var(--dark);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

@media (max-width: 768px) {
    .breadcrumb ol {
        padding: 12px 15px;
        font-size: 13px;
    }

    .share-buttons {
        padding: 20px;
        justify-content: center;
    }

    .share-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-page {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.search-page h1 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.search-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-input-group {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.search-button {
    padding: 15px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.search-results h2 {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.no-results p:first-child {
    font-size: 24px;
    margin-bottom: 10px;
}

.search-tips {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.search-tips h3 {
    margin-bottom: 15px;
}

.search-tips ul {
    list-style: none;
    padding-left: 0;
}

.search-tips li {
    padding: 8px 0;
    color: var(--gray-500);
}

.search-tips li::before {
    content: '';
    margin-right: 10px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .search-page {
        padding: 25px;
    }

    .search-input-group {
        flex-direction: column;
    }

    .search-button {
        width: 100%;
    }
}

/* ============================================
   HEADER SEARCH
   ============================================ */
.header-search {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    border-radius: 25px;
    padding: 5px 5px 5px 15px;
    margin-left: auto;
    margin-right: 20px;
}

.header-search input {
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 14px;
    width: 180px;
    outline: none;
}

.header-search input::placeholder {
    color: var(--gray-500);
}

.header-search button {
    background: var(--primary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-search button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-search {
        display: none;
    }
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.main-nav li {
    position: relative;
}

.main-nav .has-dropdown>a::after {
    content: '';
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid var(--gray-200);
}

.has-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 14px;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: var(--primary);
    color: var(--white);
}

/* FIX: Dropdown saa hizala */
.has-dropdown .dropdown-menu {
    left: auto;
    right: 0;
}

/* FIX: Dropdown sadece hover'da a��ls�n */
.dropdown-menu {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.has-dropdown:hover>.dropdown-menu {
    display: block !important;
    visibility: visible;
    opacity: 1;
}

/* FIX: Navigasyonu saa yasla */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav {
    margin-left: auto !important;
    margin-right: 20px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ============================================
   HOMEPAGE SLIDER (SWIPER) - PREMIUM
   ============================================ */
.featured-section {
    margin-bottom: 60px;
    position: relative;
}

.featured-swiper {
    width: 100%;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.featured-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-item:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.8) 80%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-content .category-badge {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.featured-content h3 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    max-width: 900px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-content h3 a {
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(to right, var(--white), var(--white));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease;
}

.featured-content h3 a:hover {
    background-size: 100% 2px;
}

.featured-content .meta {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white) !important;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.featured-swiper:hover .swiper-button-next,
.featured-swiper:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--white);
    color: var(--primary) !important;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: var(--white) !important;
    opacity: 0.3 !important;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 32px !important;
    border-radius: 6px !important;
    background: var(--white) !important;
}

@media (max-width: 768px) {
    .featured-swiper {
        height: 400px;
        border-radius: 16px;
    }

    .featured-content {
        padding: 24px;
    }

    .featured-content h3 {
        font-size: 24px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* ============================================
   SIDEBAR WIDGETS - MODERN
   ============================================ */
.sidebar {
    position: sticky;
    top: 20px;
}

.widget {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title .icon {
    font-size: 20px;
}

/* Popular Articles Widget */
.widget-popular .popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-popular .popular-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.widget-popular .popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-popular .rank {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.widget-popular .popular-content {
    display: flex;
    gap: 12px;
    flex: 1;
}

.widget-popular .popular-thumb {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.widget-popular .popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.widget-popular .popular-thumb:hover img {
    transform: scale(1.1);
}

.widget-popular .popular-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.widget-popular .popular-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s;
}

.widget-popular .popular-title:hover {
    color: var(--primary);
}

.widget-popular .popular-meta {
    font-size: 12px;
    color: var(--gray-500);
}

/* Latest Articles Widget */
.widget-latest .latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-latest .latest-item {
    border-bottom: 1px solid var(--gray-100);
}

.widget-latest .latest-item:last-child {
    border-bottom: none;
}

.widget-latest .latest-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    transition: all 0.2s;
}

.widget-latest .latest-item a:hover {
    padding-left: 8px;
}

.widget-latest .latest-date {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.widget-latest .latest-title {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.4;
}

.widget-latest .latest-item a:hover .latest-title {
    color: var(--primary);
}

/* Categories Widget */
.widget-categories .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories .category-list li {
    margin-bottom: 8px;
}

.widget-categories .category-list li:last-child {
    margin-bottom: 0;
}

.widget-categories .category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.widget-categories .category-list a:hover {
    background: var(--primary);
    transform: translateX(5px);
}

.widget-categories .cat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.widget-categories .category-list a:hover .cat-name {
    color: var(--white);
}

.widget-categories .cat-count {
    background: var(--white);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.widget-categories .category-list a:hover .cat-count {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
}

/* ============================================
   CATEGORY BLOCKS
   ============================================ */
.category-blocks {
    margin: 50px 0;
}

.category-block {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.block-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.block-icon {
    font-size: 24px;
}

.view-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s;
}

.view-all:hover {
    background: var(--primary);
    color: var(--white);
}

.block-articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

/* Featured article (left side) */
.block-featured {
    display: flex;
    flex-direction: column;
}

.block-featured-image {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
}

.block-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.block-featured-image:hover img {
    transform: scale(1.05);
}

.block-featured-content {
    padding: 12px 0 0;
}

.block-featured-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.block-featured-content h3 a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.2s;
}

.block-featured-content h3 a:hover {
    color: var(--primary);
}

.block-featured-content p {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.block-date {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Side articles (right side) */
.block-side-articles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.block-side-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    background: var(--gray-50);
    transition: all 0.3s;
}

.block-side-item:hover {
    background: var(--gray-100);
    transform: translateX(3px);
}

.block-side-thumb {
    width: 80px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.block-side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.block-side-item:hover .block-side-thumb img {
    transform: scale(1.1);
}

.block-side-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.block-side-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.block-side-info h4 a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.2s;
}

.block-side-info h4 a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .block-articles {
        grid-template-columns: 1fr;
    }

    .category-block-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ============================================
   TAG PAGE & TAG CLOUD
   ============================================ */
.tag-header {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.tag-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tag-icon {
    font-size: 32px;
}

.tag-count {
    color: var(--gray-500);
    font-size: 15px;
    margin: 0;
}

/* Tag Cloud Widget */
.widget-tags .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-tags .tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s;
}

.widget-tags .tag-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.widget-tags .tag-item.active {
    background: var(--primary);
    color: var(--white);
}

.widget-tags .tag-item .tag-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.widget-tags .tag-item:hover .tag-count,
.widget-tags .tag-item.active .tag-count {
    background: rgba(255, 255, 255, 0.2);
}

/* No Results */
.no-results {
    background: var(--white);
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.no-results p {
    color: var(--gray-500);
    font-size: 16px;
    margin: 0;
}

/* Article Tags in Single Page */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 40px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.article-tags .tag-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-right: 8px;
}

.article-tags a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    font-size: 13px;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}

.article-tags a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   EMOJI REACTIONS
   ============================================ */
.article-reactions {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 25px 0;
    text-align: center;
}

.reactions-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 16px;
}

.reaction-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.reaction-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
}

.reaction-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.reaction-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.reaction-btn.active .count {
    color: #fff;
}

.reaction-btn .emoji {
    font-size: 28px;
    line-height: 1;
    transition: transform 0.2s;
}

.reaction-btn:hover .emoji {
    transform: scale(1.2);
}

.reaction-btn .count {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    transition: color 0.2s;
}

@media (max-width: 480px) {
    .reaction-buttons {
        gap: 8px;
    }

    .reaction-btn {
        padding: 10px 14px;
        min-width: 55px;
    }

    .reaction-btn .emoji {
        font-size: 24px;
    }
}

/* ============================================
   GELIŞMIŞ ARAMA STİLLERİ
   ============================================ */

.search-page h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.search-form {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-button:hover {
    background: var(--primary-dark);
}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.filter-group select,
.filter-group input[type="date"] {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-group select:focus,
.filter-group input[type="date"]:focus {
    outline: none;
    border-color: var(--primary);
}

.search-results h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.search-tips {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.search-tips h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.search-tips ul {
    list-style: none;
    padding: 0;
}

.search-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.search-tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--radius);
}

.no-results p {
    margin-bottom: 0.5rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .search-input-group {
        flex-direction: column;
    }

    .search-filters {
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }
}

/* ============================================
   WIDGET STYLES
   ============================================ */

/* Genel Widget Stili */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.widget-title .icon {
    font-size: 20px;
}

/* Arama Widget */
.widget-search-form {
    display: flex;
    gap: 10px;
}

.widget-search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.widget-search-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.widget-search-form button {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-search-form button:hover {
    background: var(--primary-dark);
}

/* Son Haberler & PopÃ¼ler Haberler Widget */
.widget-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-posts-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-100);
}

.widget-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-post-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.widget-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.widget-post-thumb:hover img {
    transform: scale(1.1);
}

.widget-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-post-info a {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget-post-info a:hover {
    color: var(--primary);
}

.widget-post-info small {
    font-size: 12px;
    color: var(--gray-500);
}

/* Kategoriler Widget */
.widget-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-category-list li {
    margin-bottom: 8px;
}

.widget-category-list li:last-child {
    margin-bottom: 0;
}

.widget-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.widget-category-list a:hover {
    background: var(--primary);
    color: white;
    padding-left: 20px;
}

.widget-category-list a span:last-child {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.widget-category-list a:hover span:last-child {
    background: rgba(255, 255, 255, 0.2);
}

/* Etiketler Widget */
.widget-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-tag-cloud a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 13px;
    border-radius: 20px;
    transition: var(--transition);
}

.widget-tag-cloud a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Sosyal Medya Widget */
.widget-social-links {
    display: flex;
    gap: 10px;
}

.widget-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 20px;
    transition: var(--transition);
}

.widget-social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Footer Widget Styles */
.footer-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.footer-widget .widget-title::after {
    background: var(--primary);
}

.footer-widget .widget-posts-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.footer-widget .widget-post-info a {
    color: var(--gray-300);
}

.footer-widget .widget-post-info a:hover {
    color: white;
}

.footer-widget .widget-category-list a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
}

.footer-widget .widget-category-list a:hover {
    background: var(--primary);
    color: white;
}

.footer-widget .widget-tag-cloud a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
}

.footer-widget .widget-tag-cloud a:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   FOOTER WIDGET OVERRIDES
   ============================================ */
.site-footer .sidebar-widget {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 30px;
}

.site-footer .sidebar-widget .widget-title {
    color: var(--white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.site-footer .sidebar-widget .widget-title::after {
    background: var(--primary);
}

.site-footer .widget-search-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.site-footer .widget-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer .widget-search-form input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}