/*
Theme Name: Xeberxetti
Theme URI: https://xeberxetti.com/
Author: Emblem.az
Author URI: https://emblem.az/
Description: Minimal, sürətli və SEO optimizasiyalı xəbər saytı üçün hazırlanmış xüsusi WordPress mövzusu.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xeberxetti
Tags: black-white, fast, seo-friendly, minimal
*/

/* ==========================================================================
   1. ÜMUMİ STILLƏR VƏ DƏYİŞƏNLƏR (GLOBALS & VARIABLES)
   ========================================================================== */

:root {
    --primary-color: #007bff; /* Ana rəng */
    --primary-hover-color: #0056b3; /* Ana rəngin üzərinə gəldikdə */
    --background-color: #f8f9fa; /* Arxa fon rəngi */
    --card-background: #ffffff; /* Kartların arxa fonu */
    --text-color: #212529; /* Mətn rəngi */
    --light-text-color: #6c757d; /* Açıq mətn rəngi */
    --border-color: #dee2e6; /* Sərhəd rəngi */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --border-radius: 8px; /* Ümumi radius */
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); /* Kölgə effekti */
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* ==========================================================================
   2. LAYOUT & CONTAINERS
   ========================================================================== */

.site-main {
    max-width: 1320px;
    margin: 30px auto;
    padding: 0 15px;
}

/* Tək xəbər səhifəsi üçün konteyner */
.single-post-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.single-post-main {
    flex: 1;
    min-width: 0;
    width: 66%;
}

.single-post-sidebar {
    flex-basis: 300px;
}

@media (max-width: 992px) {
    .single-post-container {
        flex-direction: column;
        gap: 50px;
    }
    .single-post-main {
        width: 100%;
    }
}


/* ==========================================================================
   3. KOMPONENTLƏR (COMPONENTS)
   ========================================================================== */

/* --- 3.1 Header & Navigation --- */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-branding img {
    max-width: 120px;
    height: auto;
}

/* Desktop Menyu */
.main-navigation .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}
.main-navigation .nav-links a {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
}
.main-navigation .nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}
.main-navigation .nav-links a:hover:after { width: 100%; }
.main-navigation .current-menu-item > a { color: var(--primary-color); }

/* Mobil Menyu Stili (Mobile-First) */
.menu-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.main-navigation .nav-links {
    display: none;
}
.menu-toggle .hamburger-icon {
    display: block; position: relative; width: 24px; height: 2px; background-color: #333; transition: all 0.2s;
}
.menu-toggle .hamburger-icon::before,
.menu-toggle .hamburger-icon::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px; background-color: #333; transition: transform 0.3s ease;
}
.menu-toggle .hamburger-icon::before { transform: translateY(-8px); }
.menu-toggle .hamburger-icon::after { transform: translateY(8px); }

/* Geniş Ekran üçün Responsivlik */
@media (min-width: 993px) {
    .menu-toggle {
        display: none;
    }
    .main-navigation .nav-links {
        display: flex;
        position: static; flex-direction: row; width: auto; background-color: transparent; box-shadow: none; padding: 0;
    }
    .main-navigation .nav-links a { padding: 10px 0; border: none; }
}

/* Açılmış mobil menyu */
.main-navigation.toggled .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
    background-color: #fff; box-shadow: 0 10px 10px rgba(0,0,0,0.05); padding: 20px; text-align: center; gap: 0;
}
.main-navigation.toggled .nav-links li { width: 100%; }
.main-navigation.toggled .nav-links a { display: block; padding: 15px; border-bottom: 1px solid #f0f0f0; }
.main-navigation.toggled .nav-links li:last-child a { border-bottom: none; }
.main-navigation.toggled a:after { display: none; }
.main-navigation.toggled .menu-toggle .hamburger-icon { background-color: transparent; }
.main-navigation.toggled .menu-toggle .hamburger-icon::before { transform: translateY(0) rotate(45deg); }
.main-navigation.toggled .menu-toggle .hamburger-icon::after { transform: translateY(0) rotate(-45deg); }


/* --- 3.2 Bölmə Başlıqları --- */
.section-title, .widget-title, .related-posts-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    color: var(--text-color);
}
.widget-title { font-size: 20px; }


/* --- 3.3 Xəbər Kartları və Qridlər --- */

/* --- 3.3 Xəbər Kartları və Qridlər (Yenilənmiş Versiya) --- */
.hero-grid, .post-grid, .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.post-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.post-card-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-thumb {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
}

/* YENİ: Şərh sayı üçün etiket stili */
.comments-badge {
    position: absolute;
    top: 12px;
    right: 12px; /* Sağ tərəfə yerləşdirildi */
    background-color: rgba(20, 20, 20, 0.75); /* Fərqli fon rəngi */
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
    text-decoration: none;
}
.comments-badge:hover {
    background-color: var(--primary-color);
}


.post-card-content {
    padding: 15px 20px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Bu, meta blokunu aşağı itələyir */
}

.post-card-title {
    font-size: 18px; /* Səliqəli görünüş üçün bir az kiçildildi */
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.45;
}

/* YENİLƏNDİ: Meta blokunun tam dizaynı */
.post-card-meta {
    margin-top: auto; /* Bu, bloku content-in ən altına yerləşdirir */
    padding-top: 10px;
    border-top: 1px solid #eee; /* Ayırıcı xətt */
    display: flex;
    justify-content: space-between; /* Elementləri kənarlara yaslayır */
    align-items: center;
    font-size: 13px;
    color: var(--light-text-color, #666);
}

/* YENİ: Meta elementləri üçün ümumi stil */
.post-card-meta .meta-item {
    display: flex;
    align-items: center;
}

/* YENİ: İkonlar üçün stil */
.post-card-meta .dashicons {
    font-size: 16px;
    margin-right: 6px;
    height: auto;
    width: auto;
}




/* --- 3.4 Tək Xəbər Səhifəsi --- */
.single-post .entry-header .entry-title { font-size: 38px; font-weight: 800; line-height: 1.25; margin: 0 0 15px 0; }
.single-post .entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 15px; font-size: 14px;
    color: var(--light-text-color); margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color);
}
.entry-meta .meta-item { display: flex; align-items: center; gap: 6px; }
.entry-meta a { color: var(--primary-color); font-weight: 500; }
.single-post .post-thumbnail { margin-bottom: 30px; }
.single-post .post-thumbnail img { width: 100%; height: auto; border-radius: var(--border-radius); }
.single-post .entry-content { font-size: 18px; line-height: 1.8; color: #333; }
.single-post .entry-content p { margin-bottom: 1.5em; }
.single-post .entry-content h2, .single-post .entry-content h3 { font-weight: 700; margin-top: 2.5em; margin-bottom: 1em; line-height: 1.4; }
.single-post .entry-content h2 { font-size: 26px; }
.single-post .entry-content h3 { font-size: 22px; }
.single-post .entry-content blockquote { margin: 2em 0; padding: 15px 20px; border-left: 4px solid var(--primary-color);
    background-color: var(--background-color); font-style: italic; font-size: 17px;
}
.single-post .entry-content a { border-bottom: 1px solid; }
.single-post .entry-content a:hover { color: var(--primary-hover-color); }
.single-post .entry-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.tags-list a { display: inline-block; background-color: var(--background-color); padding: 6px 14px;
    margin: 5px; border-radius: 50px; font-size: 13px; transition: all 0.2s;
}
.tags-list a:hover { background-color: var(--primary-color); color: #fff; }


/* --- 3.5 Sidebar Widget --- */
.widget_latest_posts { background-color: var(--card-background); padding: 20px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.widget_latest_posts .posts-list { display: flex; flex-direction: column; gap: 20px; }
.widget_latest_posts .post-item { display: flex; gap: 15px; align-items: center; }
.widget_latest_posts .post-item__thumbnail { flex-shrink: 0; width: 80px; height: 80px; overflow: hidden; border-radius: 6px; }
.widget_latest_posts .post-item__thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.widget_latest_posts .post-item:hover .post-item__thumbnail img { transform: scale(1.1); }
.widget_latest_posts .post-item__content { flex: 1; }
.widget_latest_posts .post-item__title { font-size: 15px; font-weight: 600; line-height: 1.4; margin: 0 0 5px 0; transition: color 0.3s ease; }
.widget_latest_posts .post-item:hover .post-item__title { color: var(--primary-color); }
.widget_latest_posts .post-item__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--light-text-color); }
.widget_latest_posts .post-item__category a { font-weight: 500; color: var(--primary-color); }


/* --- 3.6 Paginasiya --- */
.pagination { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.pagination .page-numbers {
    display: inline-block; margin: 0 5px; padding: 8px 16px; border: 1px solid var(--border-color);
    border-radius: var(--border-radius); color: var(--primary-color); font-weight: 600; transition: all 0.3s ease;
}
.pagination .page-numbers:hover { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.pagination .current { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* --- 3.7 Axtarış Sistemi Stili (Təkmilləşdirilmiş Versiya) --- */

/* Axtarış Formu */
.search-form {
    position: relative;
    max-width: 500px; /* Formanın enini bir az artıraq */
}
.search-field {
    width: 100%;
    padding: 14px 60px 14px 25px; /* İçəridən boşluqları artıraq */
    border: 1px solid transparent; /* Dəyişiklik: Sərhədi standart halda şəffaf edirik */
    border-radius: 50px;
    font-size: 16px;
    background-color: #f1f3f5; /* Dəyişiklik: İncə arxa fon rəngi */
    transition: all 0.3s ease;
    -webkit-appearance: none; /* iOS-da kölgələri ləğv et */
}
.search-field::placeholder {
    color: #999; /* Placeholder mətninin rəngi */
}
.search-field:focus {
    outline: none;
    border-color: var(--primary-color, #007bff);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15); /* Fokus effekti */
}
.search-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color, #007bff);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.search-submit:hover {
    background: var(--primary-hover-color, #0056b3);
    transform: translateY(-50%) scale(1.05); /* Dəyişiklik: Hover effekti */
}
.search-submit .search-icon {
    width: 20px;
    height: 20px;
}

/* Axtarış Nəticələri Səhifəsi Başlığı */
.page-header {
    margin-bottom: 40px;
    background-color: var(--card-background, #fff);
    padding: 30px;
    border-radius: var(--border-radius, 8px);
    border: 1px solid var(--border-color, #eee);
}
.page-title {
    font-size: 26px; /* Dəyişiklik: Ölçünü bir az optimallaşdıraq */
    margin: 0;
}
.page-title span {
    color: var(--primary-color, #007bff);
    font-style: italic;
}
.search-results-count {
    margin-top: 8px;
    font-size: 15px;
    color: var(--light-text-color, #6c757d);
}

/* İşarələnmiş sözün stili */
.search-highlight {
    background-color: rgba(0, 123, 255, 0.15); /* Dəyişiklik: Daha incə mavi çalar */
    color: var(--primary-hover-color, #0056b3);
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

/* Nəticə olmadıqda */
.no-results {
    text-align: center; /* Dəyişiklik: Məzmunu mərkəzə çəkək */
    background-color: var(--card-background, #fff);
    padding: 50px 30px;
    border-radius: var(--border-radius, 8px);
    border: 1px solid var(--border-color, #eee);
}
.no-results .no-results-icon {
    color: var(--primary-color, #007bff);
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}
.no-results .page-title {
    font-size: 24px;
}
.no-results .page-content p {
    font-size: 17px;
    color: var(--light-text-color, #6c757d);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.no-results .search-form {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}
/* --- 4. FOOTER (ALTBİLGİ) STİLİ --- */

.site-footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Yuxarı hissə (3 sütunlu) */
.footer-widgets {
    padding: 60px 0;
}
.footer-widgets .footer-container {
    display: grid;
    gap: 40px;
    /* Responsiv qrid: Böyük ekranda 3, kiçik ekranda 1 sütun */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color, #007bff);
}

/* Sütun 1: Haqqımızda */
.widget-about .footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}
.widget-about .about-text {
    line-height: 1.7;
}

/* Sosial Media Linkləri */
.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: var(--primary-color, #007bff);
    border-color: var(--primary-color, #007bff);
    transform: translateY(-3px);
}

/* Sütun 2: Faydalı Linklər (Menyu) */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-menu a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Sütun 3: Əlaqə */
.contact-info {
    font-style: normal;
    line-height: 1.8;
}
.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Aşağı hissə (Copyright) */
.site-info {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
.site-info p {
    margin: 0;
}
/* --- Footer-də "Site Credits" Stili --- */

.site-info .footer-container {
    display: flex;
    flex-wrap: wrap; /* Mobil cihazlarda alt-alta düşməsi üçün */
    justify-content: space-between;
    align-items: center;
    gap: 10px 20px;
}

.site-info p {
    margin: 0;
}

.site-credits a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.site-credits a:hover {
    color: var(--primary-color, #007bff);
}

/* Mobil cihazlarda hər iki mətnin mərkəzdə olması üçün */
@media (max-width: 768px) {
    .site-info .footer-container {
        justify-content: center;
        text-align: center;
    }
}
/* --- 3.8 Paylaşım Düymələri --- */

.share-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, #eee);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.2s ease;
}
.share-btn .share-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.share-facebook { background-color: #1877F2; }
.share-twitter { background-color: #1DA1F2; }
.share-whatsapp { background-color: #25D366; }
.share-telegram { background-color: #0088cc; }
.share-telegram .share-icon { fill: currentColor; stroke: none; } /* Telegram ikonu fərqlidir */

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}


/* --- 3.9 Şərh Bölməsi --- */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color, #eee);
}
.comments-title {
    font-size: 24px;
    margin-bottom: 30px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.comment {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color, #eee);
}
.comment .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 30px;
}
.comment-body {
    display: flex;
    gap: 20px;
}
.comment-author .avatar {
    border-radius: 50%;
}
.comment-content {
    flex: 1;
}
.comment-meta {
    margin-bottom: 10px;
    font-size: 14px;
}
.comment-author {
    font-weight: 700;
    font-size: 16px;
}
.comment-metadata a {
    color: var(--light-text-color, #6c757d);
}
.comment-content p {
    margin-bottom: 15px;
}
.reply a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color, #007bff);
}

/* Şərh Formu */
.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color, #ccc);
    border-radius: var(--border-radius, 8px);
    margin-bottom: 20px;
    font-size: 16px;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color, #007bff);
}
.form-submit .submit {
    background-color: var(--primary-color, #007bff);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.form-submit .submit:hover {
    background-color: var(--primary-hover-color, #0056b3);
}
/* --- Sidebar Son Şərhlər Widget Stili (Yenilənmiş) --- */

/* Widget-lərin ümumi stilini təmin etmək üçün selektorları qruplaşdırırıq */
.widget_search,
.widget_latest_posts,
.widget_recent_comments {
    background-color: var(--card-background, #ffffff);
    padding: 20px;
    border-radius: var(--border-radius, 8px);
    box-shadow: var(--box-shadow, 0 4px 15px rgba(0, 0, 0, 0.07));
    margin-bottom: 30px; /* Widget-lər arasında məsafə */
}

/* Axtarış widget-i üçün xüsusi stil */
.widget_search .search-form {
    max-width: 100%;
}

.recent-comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px; /* Şərhlər arasında məsafəni bir az artıraq */
}

.comment-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color, #eee);
}
.recent-comments-list li:last-child .comment-item {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-content {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Mətnlər arasında şaquli məsafə */
}

.comment-meta-top {
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.comment-author {
    font-weight: 700;
}
.comment-author a {
    color: var(--text-color, #212529);
}
.comment-author a:hover {
    color: var(--primary-color, #007bff);
}

.comment-on-text {
    font-size: 14px;
    color: var(--light-text-color, #6c757d);
}

.comment-post-title {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}
.comment-post-title a {
    color: var(--primary-color, #007bff);
}
.comment-post-title a:hover {
    text-decoration: underline;
}

.comment-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--light-text-color, #6c757d);
    background-color: #f8f9fa; /* Sitat effekti üçün arxa fon */
    padding: 10px 15px;
    border-radius: var(--border-radius, 8px);
    border-left: 3px solid var(--border-color, #dee2e6);
    transition: all 0.2s ease;
}
.comment-excerpt:hover {
    color: var(--text-color, #212529);
    border-left-color: var(--primary-color, #007bff);
}