/* ==========================================
   SUHUT ANAYURT - COMPONENTS CSS
   Kartlar, Widgetlar, Butonlar ve Bileşenler
   ========================================== */

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-section {
    margin: 30px 0;
}

.hero-slider {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.hero-slides:active {
    cursor: grabbing;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-slide img,
.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 30px 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: var(--white);
}

.hero-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
    color: var(--white);
    /* Maksimum 2 satır */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 70px;
    /* 2 satır için */
}

.hero-title a {
    color: var(--white);
}

.hero-title a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* Slider Navigation - Sayı yerine sadece nokta */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    max-width: calc(100% - 60px);
    flex-wrap: wrap;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.slider-dot-all {
    width: 28px;
    height: 28px;
    background: rgba(196, 30, 58, 0.9);
    border-color: var(--primary-color);
    font-weight: 700;
    font-size: 11px;
    color: var(--white);
    border-radius: 50%;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-arrow.slider-prev {
    left: 20px;
}

.slider-arrow.slider-next {
    right: 20px;
}

/* Slider Yan Reklam Alanı */
.hero-side-ads {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    flex-shrink: 0;
}

.side-ad-widget {
    width: 320px;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.side-ad-placeholder {
    width: 300px;
    height: 420px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border: 2px dashed #ccc;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.side-ad-placeholder span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #666;
}

@media (max-width: 1200px) {
    .hero-side-ads {
        display: none;
    }
}

/* Yan Haber Kartları (eski - artık kullanılmıyor) */
.hero-side-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-news-card {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.side-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.side-news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.side-news-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f0f0f0;
}

.side-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.side-news-card:hover .side-news-image img {
    transform: scale(1.05);
}

.side-news-content {
    padding: 15px;
    flex: 1;
    display: flex;
    align-items: center;
}

.side-news-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================
   HABER KARTLARI
   ========================================== */
.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.news-card a {
    display: block;
    color: inherit;
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ==========================================
   WIDGET'LAR
   ========================================== */
.widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.widget-header .widget-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-view-all {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.widget-view-all:hover {
    text-decoration: underline;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

/* Popüler Haberler Widget */
.popular-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 30px;
}

.popular-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Kategori Listesi Widget */
.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text-color);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.category-count {
    background: var(--bg-color);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-light);
}

/* Yazarlar Widget */
.authors-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.author-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.author-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.author-item .author-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.author-item .author-link:hover {
    transform: translateX(5px);
}

.author-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.author-title {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.author-latest {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.author-latest-link {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    padding: 8px 10px;
    background: var(--light-gray);
    border-radius: 5px;
    transition: var(--transition);
    border-left: 3px solid var(--primary-color);
}

.author-latest-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.author-latest-link .latest-label {
    font-weight: 500;
    color: var(--primary-color);
}

.author-latest-link:hover .latest-label {
    color: var(--white);
}

/* ==========================================
   REKLAM ALANLARI
   ========================================== */
.ad-section {
    background: var(--bg-color);
    padding: 20px 0;
    margin: 20px 0;
}

.ad-horizontal {
    max-width: 728px;
    width: 100%;
    height: 140px;
    margin: 0 auto;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    border-radius: var(--border-radius);
    font-size: 14px;
    color: #999;
}

.ad-horizontal-full {
    width: 100%;
    height: 140px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    border-radius: var(--border-radius);
    font-size: 14px;
    color: #999;
}

.ad-sidebar {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: #f5f5f5;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: #999;
}

/* ==========================================
   SECTION BAŞLIKLARI
   ========================================== */
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--hover-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-all {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--hover-color);
}

/* ==========================================
   BUTONLAR
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--hover-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1a252f;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: var(--text-light);
}

/* ==========================================
   SAYFALAMA
   ========================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

.pagination a:hover,
.pagination .current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ==========================================
   FORM ELEMANLARI
   ========================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================
   RESPONSIVE - COMPONENTS
   ========================================== */
@media (max-width: 968px) {
    .hero-slide {
        height: 350px;
    }

    .hero-title {
        font-size: 22px;
        max-height: 60px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 24px;
    }

    .slider-dot-all {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .side-news-image {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 300px;
    }

    .hero-title {
        font-size: 18px;
        max-height: 50px;
    }

    .hero-content {
        padding: 60px 20px 45px;
    }

    .hero-category {
        font-size: 10px;
        padding: 4px 10px;
    }

    .hero-meta {
        font-size: 12px;
        gap: 10px;
    }

    .slider-nav {
        bottom: 12px;
        gap: 8px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 20px;
    }

    .slider-dot-all {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    .news-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 250px;
    }

    .hero-title {
        font-size: 16px;
        max-height: 44px;
    }

    .hero-content {
        padding: 50px 15px 40px;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }

    .slider-dot.active {
        width: 16px;
    }

    .slider-dot-all {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }

    .side-news-card {
        flex-direction: row;
    }

    .side-news-image {
        width: 120px;
        height: auto;
        min-height: 100px;
    }
}

/* ==========================================
   HABER DETAY (SINGLE.PHP) STİLLERİ
   ========================================== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Kategori Badge */
.article-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Haber Detay Container */
.article-detail {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Haber Başlık */
.article-detail-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

/* Meta Bilgiler */
.article-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.author-info-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info-inline img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info-inline .author-name {
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    text-decoration: none;
}

.author-info-inline .author-name:hover {
    color: var(--primary-color);
}

.author-info-inline .author-role {
    font-size: 13px;
    color: var(--text-light);
}

.article-meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.article-meta-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-info svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

/* Sosyal Paylaşım */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-light);
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Ana Görsel */
.article-detail-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: var(--bg-color);
    padding: 12px 15px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* İçerik */
.article-detail-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
}

.article-detail-content p {
    margin-bottom: 20px;
}

.article-detail-content p.lead {
    font-size: 19px;
    font-weight: 500;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 25px;
}

.article-detail-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 12px;
}

.article-detail-content ul,
.article-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-detail-content li {
    margin-bottom: 10px;
}

.article-detail-content blockquote {
    background: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--secondary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

/* Reklam İçerik İçi */
.article-ad {
    margin: 30px 0;
    text-align: center;
}

/* Etiketler */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.tag-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

.article-tag {
    padding: 6px 14px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* İlgili Haberler Section */
.related-articles {
    margin-top: 50px;
    padding-top: 30px;
}

.related-articles .section-title {
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .article-detail {
        padding: 25px 20px;
    }

    .article-detail-title {
        font-size: 24px;
    }

    .article-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-meta-info {
        flex-direction: column;
        gap: 10px;
    }

    .article-detail-content {
        font-size: 16px;
    }

    .article-detail-content blockquote {
        padding: 20px;
        font-size: 16px;
    }
}

/* ==========================================
   İÇ SAYFA SIDEBAR (SIDEBAR-SINGLE) STİLLERİ
   ========================================== */

/* Popular List */
.popular-list {
    display: flex;
    flex-direction: column;
}

.popular-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-item:first-child {
    padding-top: 0;
}

.popular-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 30px;
    line-height: 1;
}

.popular-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-content h4 a {
    color: inherit;
    text-decoration: none;
}

.popular-content h4 a:hover {
    color: var(--primary-color);
}

.popular-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.popular-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Related News in Sidebar */
.related-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-news-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.related-news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-news-content {
    flex: 1;
}

.related-news-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1.4;
    transition: var(--transition);
}

.related-news-item a:hover h4 {
    color: var(--primary-color);
}

.related-news-content span {
    font-size: 12px;
    color: var(--text-light);
}

/* Category List Active State */
.category-list li.active a {
    background: var(--primary-color);
    color: var(--white);
}

.category-list li.active .category-count {
    background: var(--white);
    color: var(--primary-color);
}

/* ==========================================
   YAZAR PROFİL SAYFASI
   ========================================== */
.author-profile {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e50 100%);
    padding: 50px 0;
    margin-bottom: 30px;
}

.author-profile-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.author-avatar-large {
    flex-shrink: 0;
}

.author-avatar-large img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.author-details {
    color: var(--white);
}

.author-name-large {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.author-title-large {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.author-bio-long {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
}

.author-stats-large {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.author-stats-large .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
}

.author-stats-large .stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.author-stats-large .stat-item span {
    font-size: 13px;
    opacity: 0.8;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.author-social .social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Yazılar Liste */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.article-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.article-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.article-item .article-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
}

.article-item .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-item .article-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-item .article-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition);
}

.article-item:hover .article-title {
    color: var(--primary-color);
}

.article-item .article-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item .article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.article-item .article-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-item .article-date svg {
    width: 14px;
    height: 14px;
}

/* Diğer Yazarlar Sidebar */
.writers-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.writer-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--gray-light);
    border-radius: 8px;
    transition: var(--transition);
}

.writer-sidebar-item:hover {
    background: var(--gray);
}

.writer-sidebar-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.writer-sidebar-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.writer-sidebar-item h4 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.writer-sidebar-item h4 a:hover {
    color: var(--primary-color);
}

.writer-sidebar-item span {
    font-size: 12px;
    color: var(--text-light);
}

/* Kategori Arşiv Başlık */
.category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    padding: 40px 0;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-description {
    font-size: 15px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 15px;
}

.category-post-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
}

.no-posts p {
    color: var(--text-light);
    font-size: 16px;
}

/* Archive Info */
.archive-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.archive-count {
    font-size: 14px;
    color: var(--text-color);
}

.archive-count strong {
    color: var(--primary-color);
    font-weight: 600;
}

.archive-page {
    font-size: 13px;
    color: var(--text-light);
    padding: 5px 12px;
    background: var(--light-gray);
    border-radius: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.pagination-btn:hover {
    background: var(--gray-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ==========================================
   KÖŞE YAZISI DETAY SAYFASI
   ========================================== */
.column-article {
    flex: 1;
    max-width: 100%;
}

/* Yazar Header */
.column-author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray);
}

.column-author-avatar {
    flex-shrink: 0;
}

.column-author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.column-author-avatar a:hover img {
    transform: scale(1.05);
}

.column-author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.column-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: fit-content;
}

.column-author-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.column-author-name:hover {
    color: var(--primary-color);
}

.column-author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Köşe Yazısı Başlık */
.column-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Köşe Yazısı Meta */
.column-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.column-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.column-meta svg {
    color: var(--primary-color);
}

/* Köşe Yazısı İçerik */
.column-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 30px;
}

.column-content .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.column-content p {
    margin-bottom: 20px;
}

.column-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 35px 0 20px;
}

.column-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.column-content blockquote {
    background: var(--gray-light);
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.column-content blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 500;
}

.column-content ul,
.column-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.column-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.column-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.column-content a:hover {
    text-decoration: none;
}

/* Yazarın Diğer Yazıları */
.author-other-articles {
    background: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 30px;
}

.author-other-articles h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.other-articles-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.other-article-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.other-article-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.other-article-date {
    font-size: 12px;
    color: var(--text-light);
}

.other-article-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    transition: var(--transition);
}

.other-article-item:hover .other-article-title {
    color: var(--primary-color);
}

/* Responsive - Yazar Profil */
@media (max-width: 768px) {
    .author-profile-content {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar-large img {
        width: 140px;
        height: 140px;
    }

    .author-name-large {
        font-size: 26px;
    }

    .author-bio-long {
        font-size: 14px;
    }

    .author-stats-large {
        justify-content: center;
        gap: 15px;
    }

    .author-stats-large .stat-item {
        padding: 12px 18px;
    }

    .author-stats-large .stat-item strong {
        font-size: 20px;
    }

    .author-social {
        justify-content: center;
    }

    .article-item a {
        flex-direction: column;
    }

    .article-item .article-image {
        width: 100%;
        height: 180px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 26px;
    }

    /* Köşe Yazısı Responsive */
    .column-author-header {
        flex-direction: column;
        text-align: center;
    }

    .column-author-avatar img {
        width: 80px;
        height: 80px;
    }

    .column-author-info {
        align-items: center;
    }

    .column-title {
        font-size: 24px;
    }

    .column-meta {
        justify-content: center;
    }

    .column-content {
        font-size: 16px;
    }

    .column-content .lead {
        font-size: 18px;
    }

    .column-content blockquote {
        padding: 20px;
        font-size: 16px;
    }
}

/* ==========================================
   KATEGORİLER SAYFASI
   ========================================== */

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 0;
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

/* Kategoriler Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.category-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: var(--white);
}

.category-icon svg {
    width: 36px;
    height: 36px;
}

.category-info {
    flex: 1;
}

.category-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    transition: var(--transition);
}

.category-card:hover .category-name {
    color: var(--primary-color);
}

.category-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.category-count-badge {
    display: inline-block;
    background: var(--gray-light);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Kategori Renkleri */
.category-gundem {
    border-left-color: #e74c3c;
}

.category-gundem .category-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.category-spor {
    border-left-color: #27ae60;
}

.category-spor .category-icon {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.category-ekonomi {
    border-left-color: #f39c12;
}

.category-ekonomi .category-icon {
    background: linear-gradient(135deg, #f39c12, #d68910);
}

.category-kultur-sanat {
    border-left-color: #9b59b6;
}

.category-kultur-sanat .category-icon {
    background: linear-gradient(135deg, #9b59b6, #7d3c98);
}

.category-saglik {
    border-left-color: #e91e63;
}

.category-saglik .category-icon {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.category-egitim {
    border-left-color: #3498db;
}

.category-egitim .category-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.category-teknoloji {
    border-left-color: #00bcd4;
}

.category-teknoloji .category-icon {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.category-cevre {
    border-left-color: #4caf50;
}

.category-cevre .category-icon {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.category-turizm {
    border-left-color: #ff9800;
}

.category-turizm .category-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.category-yasam {
    border-left-color: #ff5722;
}

.category-yasam .category-icon {
    background: linear-gradient(135deg, #ff5722, #e64a19);
}

.category-genclik {
    border-left-color: #673ab7;
}

.category-genclik .category-icon {
    background: linear-gradient(135deg, #673ab7, #512da8);
}

.category-tarim {
    border-left-color: #8bc34a;
}

.category-tarim .category-icon {
    background: linear-gradient(135deg, #8bc34a, #689f38);
}

.category-siyaset {
    border-left-color: #795548;
}

.category-siyaset .category-icon {
    background: linear-gradient(135deg, #795548, #5d4037);
}

.no-categories {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    padding: 40px;
}

/* Responsive - Kategoriler */
@media (max-width: 768px) {
    .page-header {
        padding: 35px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .page-description {
        font-size: 15px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-card {
        padding: 20px;
        gap: 15px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon svg {
        width: 30px;
        height: 30px;
    }

    .category-name {
        font-size: 18px;
    }

    .category-description {
        font-size: 13px;
    }
}

/* ==========================================
   YAZARLAR SAYFASI (Tam Genişlik)
   ========================================== */

/* Yazarlar Grid - Tam Genişlik (Sidebar yok) */
.writers-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Yazar Kartı */
.writer-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.writer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.writer-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.writer-avatar {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.writer-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.writer-card:hover .writer-avatar img {
    transform: translate(-50%, -50%) scale(1.05);
}

.writer-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.writer-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    transition: var(--transition);
}

.writer-card:hover .writer-name {
    color: var(--primary-color);
}

.writer-title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.writer-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.writer-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray);
}

.writer-stats span {
    font-size: 14px;
    color: var(--text-light);
}

.writer-stats strong {
    color: var(--primary-color);
    font-weight: 700;
}

.no-writers {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
}

/* Responsive - Yazarlar */
@media (max-width: 768px) {
    .writers-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .writer-avatar {
        height: 160px;
    }

    .writer-avatar img {
        width: 100px;
        height: 100px;
    }

    .writer-name {
        font-size: 18px;
    }

    .writer-info {
        padding: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .writers-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .writers-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Yazarlar Arası Reklam */
.writers-inline-ad {
    margin: 30px 0;
    width: 100%;
}

.writers-inline-ad .ad-horizontal-full {
    margin: 0;
}

/* ==========================================
   SAYFA İÇERİK STİLLERİ (page.php)
   ========================================== */

/* Sayfa İçerik Alanı */
.page-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.text-section {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.text-section .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.text-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.text-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 25px 0 12px;
}

.text-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.text-section p {
    margin-bottom: 15px;
}

.text-section ul,
.text-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.text-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.text-section ul li {
    list-style-type: disc;
}

.text-section ol li {
    list-style-type: decimal;
}

.text-section li strong {
    color: var(--secondary-color);
}

.text-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.text-section a:hover {
    text-decoration: none;
}

.text-section blockquote {
    background: var(--gray-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    color: var(--secondary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.text-section blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
}

/* Bilgi Kutusu */
.info-box {
    display: flex;
    gap: 15px;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
}

.info-box svg {
    flex-shrink: 0;
    color: #1976d2;
    width: 24px;
    height: 24px;
}

.info-box strong {
    display: block;
    color: #1565c0;
    margin-bottom: 5px;
}

.info-box p {
    margin: 0;
    color: #1565c0;
    font-size: 14px;
}

/* Uyarı Kutusu */
.warning-box {
    display: flex;
    gap: 15px;
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
}

.warning-box svg {
    flex-shrink: 0;
    color: #f57c00;
    width: 24px;
    height: 24px;
}

.warning-box strong {
    display: block;
    color: #e65100;
    margin-bottom: 5px;
}

.warning-box p {
    margin: 0;
    color: #e65100;
    font-size: 14px;
}

/* Başarı Kutusu */
.success-box {
    display: flex;
    gap: 15px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
}

.success-box svg {
    flex-shrink: 0;
    color: #388e3c;
    width: 24px;
    height: 24px;
}

.success-box strong {
    display: block;
    color: #2e7d32;
    margin-bottom: 5px;
}

.success-box p {
    margin: 0;
    color: #2e7d32;
    font-size: 14px;
}

/* Tablo Stilleri */
.text-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.text-section table th,
.text-section table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

.text-section table th {
    background: var(--gray-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.text-section table tr:hover td {
    background: var(--gray-light);
}

/* Responsive - Sayfa İçerik */
@media (max-width: 768px) {
    .page-content {
        padding: 20px;
    }

    .text-section {
        font-size: 15px;
    }

    .text-section .lead {
        font-size: 16px;
        padding-left: 15px;
    }

    .text-section h2 {
        font-size: 20px;
        margin: 25px 0 12px;
    }

    .text-section h3 {
        font-size: 18px;
    }

    .info-box,
    .warning-box,
    .success-box {
        flex-direction: column;
        gap: 10px;
    }

    .text-section table {
        display: block;
        overflow-x: auto;
    }
}

/* =====================================================
   KÜNYE SAYFASI
   ===================================================== */
.kunye-content {
    padding: 30px;
}

.kunye-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray);
}

.kunye-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.kunye-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.kunye-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kunye-info .info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray);
}

.kunye-info .info-row:last-child {
    border-bottom: none;
}

.kunye-info .info-row strong {
    flex: 0 0 180px;
    color: var(--secondary-color);
    font-weight: 600;
}

.kunye-info .info-row span {
    flex: 1;
    color: var(--text-color);
    line-height: 1.6;
}

.kunye-info .info-row span a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kunye-info .info-row span a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.kunye-text {
    color: var(--text-color);
    line-height: 1.8;
}

.kunye-text p {
    margin-bottom: 15px;
}

.kunye-text p:last-child {
    margin-bottom: 0;
}

.kunye-text ul,
.kunye-text ol {
    margin: 15px 0;
    padding-left: 25px;
}

.kunye-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
}

.kunye-text ul li::marker {
    color: var(--primary-color);
}

.kunye-list-content ul {
    list-style: none;
    padding-left: 0;
}

.kunye-list-content ul li {
    padding-left: 25px;
    position: relative;
}

.kunye-list-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Sidebar İletişim Kartı */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.contact-item div strong {
    display: block;
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.contact-item div p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.sidebar-widget .btn-primary {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.sidebar-widget .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive - Künye */
@media (max-width: 768px) {
    .kunye-content {
        padding: 20px;
    }

    .kunye-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .kunye-section h2 {
        font-size: 18px;
    }

    .kunye-info .info-row {
        flex-direction: column;
        gap: 5px;
    }

    .kunye-info .info-row strong {
        flex: none;
        font-size: 13px;
        color: var(--primary-color);
    }

    .kunye-info .info-row span {
        font-size: 15px;
    }
}

/* ==========================================
   KVKK ÇEREZ BİLDİRİMİ
   ========================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.cookie-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-policy-link:hover {
    color: var(--white);
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }

    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: center;
    }

    .cookie-icon {
        width: 45px;
        height: 45px;
    }

    .cookie-text h4 {
        font-size: 15px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ==========================================
   SPLASH DUYURU POPUP
   ========================================== */
.splash-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.splash-popup.show {
    opacity: 1;
    visibility: visible;
}

.splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.splash-container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.splash-popup.show .splash-container {
    transform: scale(1) translateY(0);
}

.splash-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.splash-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.splash-close svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.splash-content {
    display: flex;
    flex-direction: column;
}

.splash-image {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
}

.splash-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash-body {
    padding: 30px;
    text-align: center;
}

.splash-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.splash-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.splash-text p {
    margin-bottom: 10px;
}

.splash-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.splash-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Splash Popup Responsive */
@media (max-width: 768px) {
    .splash-container {
        width: 95%;
        max-height: 85vh;
    }

    .splash-image {
        max-height: 180px;
    }

    .splash-body {
        padding: 20px;
    }

    .splash-title {
        font-size: 22px;
    }

    .splash-text {
        font-size: 14px;
    }

    .splash-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .splash-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}