/* ============================================
   Blog Page Styles
   ============================================ */

/* Blog Content Layout */
.blog-content {
    padding: 40px 0 80px;
    background: #f1f5f9;
    margin-top: 0;
}

body.light-theme .blog-content,
html.light .blog-content {
    background: #f1f5f9;
}

/* Infinite Scroll Blog List - tek sütun */
.blog-infinite-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

/* Blog card - temaya uyumlu modern kart */
.blog-list-item {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0, 150, 63, 0.12);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
}

body.light-theme .blog-list-item,
html.light .blog-list-item {
    background: #ffffff;
    border-color: rgba(0, 150, 63, 0.15);
}

.blog-list-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 150, 63, 0.14);
    border-color: rgba(0, 150, 63, 0.35);
}

body.light-theme .blog-list-item:hover,
html.light .blog-list-item:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 150, 63, 0.35);
}

.blog-list-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, #e8f5e9 0%, #f1f8e9 100%);
}

body.light-theme .blog-list-image {
    background: linear-gradient(145deg, #e8f5e9 0%, #f1f8e9 100%);
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-list-item:hover .blog-list-image img {
    transform: scale(1.06);
}

.blog-list-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    color: #00963f;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-list-badge.featured {
    background: #00963f;
    color: #fff;
}

.blog-list-content {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.blog-list-category {
    color: #00963f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-list-meta .blog-list-date {
    color: var(--text-muted);
    font-weight: 500;
}

body.light-theme .blog-list-meta .blog-list-date {
    color: #64748b;
}

.blog-list-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog-list-item:hover .blog-list-title {
    color: #00963f;
}

body.light-theme .blog-list-title {
    color: #034319;
}

body.light-theme .blog-list-item:hover .blog-list-title {
    color: #007a2f;
}

.blog-list-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.light-theme .blog-list-excerpt {
    color: #475569;
}

.blog-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid rgba(0, 150, 63, 0.1);
}

body.light-theme .blog-list-footer {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.blog-list-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-list-author .author-avatar {
    width: 28px;
    height: 28px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00963f 0%, #00b347 100%);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
}

.blog-list-author span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

body.light-theme .blog-list-author span {
    color: #64748b;
}

.blog-list-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #00963f;
    transition: gap 0.2s ease;
}

.blog-list-item:hover .blog-list-read-more {
    gap: 10px;
}

.blog-list-read-more svg {
    width: 18px;
    height: 18px;
}

/* Loading Indicator */
.blog-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.blog-loading.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(74, 222, 128, 0.2);
    border-top-color: var(--secondary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.blog-loading p {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

body.light-theme .blog-loading p {
    color: #64748b;
}

/* Most Read Widget */
.most-read-widget {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

body.light-theme .most-read-widget {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    border-color: rgba(74, 222, 128, 0.15);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.widget-header svg {
    color: var(--secondary-green);
    flex-shrink: 0;
}

.most-read-featured {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all var(--transition-base);
}

body.light-theme .most-read-featured,
html.light .most-read-featured {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
}

.most-read-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 150, 63, 0.15);
    border-color: rgba(0, 150, 63, 0.4);
}

.most-read-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.most-read-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.most-read-featured:hover .most-read-image img {
    transform: scale(1.1);
}

.most-read-content {
    padding: 20px;
    position: relative;
}

.most-read-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.5);
}

body.light-theme .most-read-badge {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.most-read-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 10px 0 12px 0;
    line-height: 1.4;
}

body.light-theme .most-read-content h4 {
    color: #034319;
}

.most-read-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

body.light-theme .most-read-meta {
    color: #64748b;
}

.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.most-read-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-bottom: 8px;
}

body.light-theme .most-read-item,
html.light .most-read-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.most-read-item:hover {
    background: rgba(0, 150, 63, 0.06);
    border-color: rgba(0, 150, 63, 0.3);
    transform: translateX(5px);
}

body.light-theme .most-read-item:hover,
html.light .most-read-item:hover {
    background: rgba(0, 150, 63, 0.06);
    border-color: rgba(0, 150, 63, 0.3);
}

.most-read-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.most-read-text {
    flex: 1;
}

.most-read-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

body.light-theme .most-read-text h4 {
    color: #034319;
}


/* Blog Search Section */
.blog-search-section {
    margin-bottom: 50px;
}

.blog-search {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.blog-search svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 2;
}

.blog-search input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    color: #034319;
    font-size: 16px;
    transition: all var(--transition-base);
}

body.light-theme .blog-search input,
html.light .blog-search input {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #034319;
}

.blog-search input:focus {
    outline: none;
    border-color: var(--secondary-green);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

body.light-theme .blog-search input:focus {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15);
}

.blog-search input::placeholder {
    color: var(--text-muted);
}

body.light-theme .blog-search input::placeholder {
    color: #94a3b8;
}

/* Three Column Layout */
.blog-layout-three {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 30px;
    align-items: start;
    margin-top: 30px;
}

/* Left Sidebar - Deals */
.blog-sidebar-left {
    position: sticky;
    top: 100px;
}

.deals-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-theme .deals-widget,
html.light .deals-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

.deals-widget .widget-title {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 15px;
}

body.light-theme .deals-widget .widget-title {
    color: #034319;
}

.deals-intro {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

body.light-theme .deals-intro {
    color: #475569;
}

.deals-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deal-item {
    display: block;
    padding: 12px 15px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #034319;
    font-size: 13px;
    text-decoration: none;
    transition: all var(--transition-base);
    line-height: 1.5;
}

body.light-theme .deal-item,
html.light .deal-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: #034319;
}

.deal-item:hover {
    background: rgba(0, 150, 63, 0.06);
    border-color: rgba(0, 150, 63, 0.4);
    transform: translateX(5px);
}

body.light-theme .deal-item:hover,
html.light .deal-item:hover {
    background: rgba(0, 150, 63, 0.06);
    border-color: rgba(0, 150, 63, 0.4);
}

/* Main Content */
.blog-main-content {
    min-width: 0;
}

/* Featured Blogs */
.featured-blogs {
    margin-bottom: 60px;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header-inline h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

body.light-theme .section-header-inline h2 {
    color: #034319;
}

.view-all {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
}

.view-all:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.featured-blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: var(--dark-tertiary);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

body.light-theme .blog-card {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.3);
}

body.light-theme .blog-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 222, 128, 0.2);
}

.blog-card.featured-card {
    grid-column: span 1;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--dark-secondary);
}

body.light-theme .blog-card-image {
    background: #e2e8f0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: rgba(74, 222, 128, 0.25);
    border: 1px solid rgba(74, 222, 128, 0.5);
    border-radius: 20px;
    color: #4ade80;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

body.light-theme .blog-badge {
    background: rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
    color: #059669;
}

.blog-badge.featured {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    color: #a78bfa;
}

body.light-theme .blog-badge.featured {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
}

.blog-badge.popular {
    background: rgba(251, 191, 36, 0.25);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fbbf24;
}

body.light-theme .blog-badge.popular {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    color: #d97706;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
}

.blog-category {
    color: var(--secondary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--text-muted);
}

body.light-theme .blog-date {
    color: #64748b;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.light-theme .blog-title {
    color: #034319;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.light-theme .blog-excerpt {
    color: #475569;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .blog-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}

.blog-author span {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

body.light-theme .blog-author span {
    color: #034319 !important;
}

.blog-list-author span {
    color: var(--text-primary);
}

body.light-theme .blog-list-author span {
    color: #034319 !important;
}

.blog-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

body.light-theme .blog-stats {
    color: #64748b;
}

/* Category Filters */
/* Category Filters in Sidebar */
.category-filters-widget {
    margin-bottom: 30px;
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-btn {
    width: 100%;
    padding: 12px 18px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: left;
}

body.light-theme .category-btn,
html.light .category-btn {
    border: 2px solid #e2e8f0;
    color: #475569;
}

.category-btn:hover {
    border-color: var(--secondary-green);
    color: var(--secondary-green);
    background: rgba(74, 222, 128, 0.1);
    transform: translateX(5px);
}

body.light-theme .category-btn:hover {
    background: rgba(74, 222, 128, 0.08);
}

.category-btn.active {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: var(--secondary-green);
    color: var(--secondary-green);
}

body.light-theme .category-btn.active {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-grid-section {
    margin-bottom: 60px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    padding: 12px 24px;
    background: var(--dark-tertiary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

body.light-theme .pagination-btn {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.1);
    color: #034319;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--secondary-green);
    color: var(--secondary-green);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    background: var(--dark-tertiary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

body.light-theme .page-number {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.1);
    color: #034319;
}

.page-number:hover {
    border-color: var(--secondary-green);
    color: var(--secondary-green);
}

.page-number.active {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
    border-color: transparent;
    color: #ffffff;
}

.pagination-numbers span {
    color: var(--text-muted);
    padding: 0 5px;
}

/* Slider'ın hemen altındaki alan: 2, 3, 4, 5. yazılar (fotoğraflı kartlar) */
.blog-below-slider {
    padding: 32px 0 40px;
    background: #f8fafc;
    display: none;
}

body.light-theme .blog-below-slider,
html.light .blog-below-slider {
    background: #f8fafc;
}

.blog-below-slider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .blog-below-slider-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .blog-below-slider-grid {
        grid-template-columns: 1fr;
    }
}

.blog-four-card {
    display: block;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 69, 25, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-four-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 69, 25, 0.15);
    border-color: rgba(0, 69, 25, 0.25);
}

.blog-four-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-four-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-four-card:hover .blog-four-card-image img {
    transform: scale(1.06);
}

.blog-four-card-content {
    padding: 18px;
}

.blog-four-card-category {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #039740;
    margin-bottom: 8px;
}

.blog-four-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #004519;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-four-card-date {
    font-size: 12px;
    color: #64748b;
}

/* Right Sidebar – sayfa kaydıkça içerik scroll edilebilir */
.blog-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.blog-sidebar::-webkit-scrollbar {
    width: 6px;
}

.blog-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.blog-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 69, 25, 0.2);
    border-radius: 3px;
}

.blog-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 69, 25, 0.35);
}

.most-read-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-theme .most-read-widget,
html.light .most-read-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

.most-read-widget .widget-title {
    color: var(--text-primary);
}

body.light-theme .most-read-widget .widget-title {
    color: #034319;
}

.most-read-featured {
    margin-bottom: 20px;
}

.most-read-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.most-read-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.most-read-content h4 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

body.light-theme .most-read-content h4 {
    color: #034319;
}

.most-read-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 4px;
    color: var(--secondary-green);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

body.light-theme .most-read-badge {
    background: rgba(74, 222, 128, 0.15);
}

.most-read-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

body.light-theme .most-read-meta {
    color: #475569;
}

.most-read-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .most-read-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.most-read-item:last-child {
    border-bottom: none;
}

.most-read-number {
    width: 24px;
    height: 24px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

body.light-theme .most-read-number {
    background: rgba(74, 222, 128, 0.15);
}

.most-read-text h4 {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

body.light-theme .most-read-text h4 {
    color: #034319;
}

.most-read-text .most-read-meta {
    font-size: 11px;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-layout-three {
        grid-template-columns: 1fr 320px;
    }
    
    .blog-sidebar-left {
        display: none;
    }
}

@media (max-width: 968px) {
    .blog-layout-three {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-sidebar {
        position: static;
    }
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px solid #e2e8f0;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-theme .sidebar-widget,
html.light .sidebar-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

body.light-theme .widget-title {
    color: #034319;
}

/* Popular Blogs List */
.popular-blogs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-blog-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 10px;
    border-radius: 12px;
}

.popular-blog-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

body.light-theme .popular-blog-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.popular-blog-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--dark-secondary);
}

body.light-theme .popular-blog-image {
    background: #e2e8f0;
}

.popular-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-blog-content {
    flex: 1;
}

.popular-blog-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.light-theme .popular-blog-content h4 {
    color: #034319;
}

.popular-blog-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

body.light-theme .popular-blog-meta {
    color: #64748b;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .category-list a {
    color: #475569;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-list a:hover {
    color: var(--secondary-green);
    padding-left: 10px;
}

.category-list a span {
    background: rgba(74, 222, 128, 0.1);
    color: var(--secondary-green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Cat list / Tag list (sidebar etiket listeleri) */
.cat-list,
.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li,
.tag-list li {
    margin-bottom: 10px;
}

.cat-list a,
.tag-list a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .cat-list a,
body.light-theme .tag-list a {
    color: #475569;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cat-list a:hover,
.tag-list a:hover {
    color: var(--secondary-green);
    padding-left: 10px;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    color: #00963f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-base);
}

.tag:hover {
    background: rgba(0, 150, 63, 0.08);
    border-color: rgba(0, 150, 63, 0.4);
    transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

body.light-theme .newsletter-widget,
html.light .newsletter-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
}

.newsletter-widget p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

body.light-theme .newsletter-widget p {
    color: #475569;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all var(--transition-base);
}

body.light-theme .newsletter-form input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #034319;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

.newsletter-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .featured-blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 15px;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-content {
        padding: 60px 0;
    }
    
    .featured-blogs-grid {
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .section-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

