/*
Theme Name: wordpress-minimal-theme-v2
Theme URI: https://kutayutku.com/
Version: 2.1.6.6
Author: Kutay Utku
Author URI: https://kutayutku.com/
Description: wordpress-minimal-theme-v2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wordpress-minimal-theme-v2
*/
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #222222;
  line-height: 1.6;
}
a {
  color: #2a8dfd;
  text-decoration: none;
  transition: color .2s ease;
}
p {
  margin-bottom: 10px;
}
h1.site-title-logo {
  margin-left: 80px;
  font-size: 12px;
}
/* Site Wrap */
.site-wrap {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 20px;
}
/* Header */
.site-header {
  border-top: 6px solid #000000;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0px;
}
/* Header Main (Logo + Arama) */
/* Header Main (Logo + Arama) */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px; /* Güncellendi */
  margin-bottom: 30px;
  background: #ffffff;
  padding: 0 0;
}
.logo img {
  width: 240px;
  height: 90px;
  object-fit: contain;
}
.header-search {
  position: relative;
  max-width: 300px;
}
.header-search input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  outline: none;
  transition: all .3s ease;
}
.header-search input:focus {
  border-color: #2a8dfd;
  box-shadow: 0 0 8px rgba(42, 141, 253, 0.2);
}
.header-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #2a8dfd;
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s ease;
}
.header-search button:hover {
  background: #1666d8;
}
/* Layout */
.main-grid {
display:flex;
  gap: 24px;

}
.content-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Post Card */
.post-card {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.post-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.entry-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.entry-title a {
  color: #222222;
}
.entry-title a:hover {
  color: #2a8dfd;
}
.post-meta {
  font-size: 13px;
  color: #666666;
  margin-bottom: 10px;
}
.post-meta a {
  color: #000;
  font-weight: normal;
}
.entry-summary {
  font-size: 15px;
  line-height: 1.7;
}
/* Devamını Oku Linki */
.read-more-wrap {
  margin-top: 10px;
  text-align: right;
}
.more-link {
  display: inline-block;
  background: none;
  padding: 0;
  color: #000; /* Siyah renk */
  font-weight: 400; /* Bold kaldırıldı */
  text-decoration: none;
}
.more-link:hover {
  color: #2a8dfd;
} /* Hover mavi */
/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 380px;
}
.widget {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.widget h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget li {
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.widget li:last-child {
  border-bottom: none;
}
.widget a {
  color: #222222;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.widget a:hover {
  color: #1666d8;
}
.sidebar-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}
/* Son Yorumlar Kullanıcı Adı ve Link Yan Yana */
.comment-author {
  font-weight: 600;
  margin-right: 5px;
  color: #666666;
  white-space: nowrap;
}
.comment-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
/* Comment Form */
.comments-section {
  background: #fdfdfd;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-top: 30px;
}
.comments-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.comments-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comments-section input, .comments-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
}
.comments-section input[type="submit"] {
  width: auto;
  background: #2a8dfd;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: background .2s ease;
}
.comments-section input[type="submit"]:hover {
  background: #1666d8;
}
/* Footer */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 20px 0;
  text-align: center;
  color: #666666;
  margin-top: 40px;
}
/* Responsive */
@media (max-width:980px) {

}
@media (max-width:760px) {
  .main-grid {
    gap: 18px;
  }
  .primary-menu {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }
  .header-main {
    flex-direction: column;
    align-items: center;
  }
  .header-search {
    margin-top: 15px;
    max-width: 100%;
  }
}
/* Sidebar Widget */
.sidebar .widget {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px; /* Border radius eklendi */
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
/* Sidebar Widget List Items */
.sidebar .widget li {
  transition: background 0.3s ease;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
  border-radius: 5px; /* Hover sırasında köşeler yuvarlatılır */
}
/* Hover ile arka plan değişimi */
.sidebar .widget li:hover {
  background: #f4f4f4; /* Hafif gri hover efekti */
}
/* Sidebar Link Hover */
.sidebar .widget li a {
  color: #222222;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.3s ease;
}
.sidebar .widget li a:hover {
  color: #2a8dfd; /* Hover mavi */
}
/* Popüler Yazılar Küçük Resim Hover */
.sidebar-thumb:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
/* Top Nav */
.top-nav {
  background: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 0;
  margin-bottom: 15px;
}
/* Menü ana */
.primary-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  position: relative;
}
/* Menü item */
.primary-menu li {
  position: relative;
  list-style: none;
  margin-right: 5px;
}
/* Menü linkleri */
.primary-menu li a, .primary-menu li.current_page_item > a {
  display: block;
  padding: 8px 16px; /* Aynı padding */
  font-size: 14px; /* Aynı font-size */
  color: #000;
  white-space: nowrap;
  transition: all .2s ease;
  border-radius: 5px; /* Hover ve seçili aynı köşe */
}
/* Hover efekti */
.primary-menu li a:hover {
  background: #000000;
  color: #fff;
}
/* Seçili menü */
.primary-menu li.current_page_item > a {
  background: #000000;
  color: #fff;
}
/* Submenu */
.primary-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  min-width: 180px;
  z-index: 999;
}
.primary-menu li ul.sub-menu li {
  padding: 0px 6px;
}
/* Hover ile açma */
.primary-menu li:hover > ul.sub-menu {
  display: block;
}
/* Submenu linkleri */
.primary-menu li ul.sub-menu li a {
  padding: 8px 16px;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  display: block;
  transition: all .2s ease;
}
.primary-menu li ul.sub-menu li a:hover {
  background: #000000;
  color: #fff;
}
/* Parent menu relative ve z-index */
.top-nav-wrap {
  position: relative; /* submenu buna göre konumlanacak */
  z-index: 1000; /* header-main ve diğer içeriklerin altına ama submenu üstüne */
}
/* Submenu */
.top-nav .primary-menu li ul.sub-menu {
  display: none;
  position: absolute; /* parent li’ye göre konumlanır */
  top: 100%; /* direkt altında başlar */
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  min-width: 220px;
  z-index: 9999; /* her zaman üstte */
}
/* Hover ile gösterme */
.top-nav .primary-menu li:hover > ul.sub-menu {
  display: block;
}
/* Submenu linkleri */
.top-nav .primary-menu li ul.sub-menu li a {
  padding: 8px 16px;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  display: block;
  transition: all .2s ease;
}
/* Hover efekti */
.top-nav .primary-menu li ul.sub-menu li a:hover {
  background: #000000;
  color: #fff;
}
/* Eğer parent container overflow:hidden ise kaldır */
.top-nav-wrap, .header-main {
  overflow: visible;
}
/* Top Nav Wrap */
.top-nav-wrap {
  width: 100%; /* Tam sayfa */
  border-bottom: 1px solid #e0e0e0; /* Alt border */
  background: #ffffff; /* Beyaz tema */
}
/* Top Nav */
.top-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}
/* Menü Listesi */
.primary-menu {
  list-style: none;
  display: flex;
  gap: 0px;
  margin: 0;
  padding: 0;
}
/* Single Post İçerik */
.single-post .entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 30px;
}
/* Paragraflar */
.single-post .entry-content p {
  margin-bottom: 16px;
}
/* Başlıklar */
.single-post .entry-content h1, .single-post .entry-content h2, .single-post .entry-content h3, .single-post .entry-content h4, .single-post .entry-content h5, .single-post .entry-content h6 {
  margin: 24px 0 12px;
  font-weight: 600;
  color: #222222;
  line-height: 1.3;
}
/* Linkler */
.single-post .entry-content a {
  color: #2a8dfd;
  text-decoration: none;
}
.single-post .entry-content a:hover {
  color: #1666d8;
}
/* Listeler */
.single-post .entry-content ul, .single-post .entry-content ol {
  margin: 16px 0 16px 30px;
  padding: 0;
}
.single-post .entry-content ul li, .single-post .entry-content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
/* Table */
.single-post .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.single-post .entry-content table th, .single-post .entry-content table td {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: left;
}
.single-post .entry-content table th {
  background: #ffffff;
  font-weight: 600;
  color: #222222;
}
/* Table Hover */
.single-post .entry-content table tr:hover {
  background: #f4f4f4;
}
/* Blockquote */
.single-post .entry-content blockquote {
  border-left: 4px solid #2a8dfd;
  padding: 10px 20px;
  margin: 20px 0;
  background: #fdfdfd;
  color: #666666;
  font-style: italic;
  border-radius: 5px;
}
/* Images */
.single-post .entry-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 8px;
}
/* Code */
.single-post .entry-content pre {
  background: #f5f5f5;
  padding: 12px;
  overflow-x: auto;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 14px;
  max-height: 600px;
}
.single-post .entry-content code {
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}
/* Responsive */
@media (max-width:760px) {
  .single-post .entry-content table {
    display: block;
    overflow-x: auto;
  }
}
.category-list li {
  display: flex;
  justify-content: space-between; /* Sol ve sağa yay */
  align-items: center;
  padding: 5px 0;
}
.category-list li a {
  flex: 1;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}
.category-list .cat-name {
  font-weight: 500;
}
.category-list .cat-count {
  color: #777;
}
.cat-name {
  flex: 1; /* Ad solda kalır */
  white-space: nowrap; /* Tek satırda kalır */
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-count {
  flex: 0; /* Sayı sağda sabit */
  white-space: nowrap; /* Alt satıra geçmez */
}
.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-list li {
  display: flex; /* Flex ile yatay yerleşim */
  justify-content: space-between; /* Tarih solda, sayı sağda */
  align-items: center;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.archive-list li:hover {
  background: #f4f4f4;
  color: #2a8dfd;
}
/* Tarih ve sayıyı ayırmak için span ekleyelim */
.archive-list li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: #222222;
}
.archive-list li a .post-count {
  margin-left: 10px;
  flex: 0;
  white-space: nowrap;
  text-align: right;
}
/* Footer */
.site-footer {
  background: #ffffff; /* Beyaz tema */
  border-top: 1px solid #e0e0e0;
  padding: 20px 0;
  color: #666666;
  font-size: 14px;
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between; /* Sol ve sağ */
  align-items: center;
  flex-wrap: wrap;
}
.footer-left, .footer-right {
  margin: 5px 0;
}
.footer-right a {
  color: #000000;
  text-decoration: none;
}
.footer-right a:hover {
  color: #1666d8;
  text-decoration: none;
}
/* Responsive */
@media (max-width: 760px) {
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
  .footer-left, .footer-right {
    margin: 5px 0;
  }
  .sidebar {
    display: none;
  }
}
/* Header Top */

/* Header Main */
.header-main {
  margin-top: 30px;
  margin-bottom: 10px;
  width: 100%;
}
.header-main-wrap {
  display: flex;
  justify-content: space-between; /* Logo sola, arama sağa */
  align-items: center; /* Aynı hizada durur */
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
/* Logo */
.logo img {
  width: 360px;
  height: 90px;
  object-fit: none;
}
/* Arama Formu */
.header-search {
  max-width: 360px;
  height: 40px;
  width: 100%;
  position: relative;
}
/* Arama input ve buton */
.header-search input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}
.header-search input:focus {
  border-color: #2a8dfd;
  box-shadow: 0 0 8px rgba(42, 141, 253, 0.2);
}
.header-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #2a8dfd;
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease;
}
.header-search button:hover {
  background: #1666d8;
}
/* Responsive */
@media (max-width: 980px) {
  .header-main-wrap {
    flex-direction: column; /* Mobilde üst üste */
    align-items: center;
    gap: 15px;
  }
  .header-search {
    max-width: 100%;
  }
}
/* Sayfalama */







/* Sayfalama Konteynerleri */
.prev-link, .next-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

/* Hover efektleri */
.prev-link:hover, .next-link:hover {
  background: #2a8dfd;
  color: #fff;
  border-color: #2a8dfd;
}

/* Sayfa numaraları */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

/* Liste elemanları */
.pagination li {
  display: inline-block;
}

/* Sayfa numaraları link ve span */
.pagination a,
.pagination span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Hover efekt */
.pagination a:hover {
  background: #2a8dfd;
  color: #fff;
  border-color: #2a8dfd;
}

/* Aktif sayfa */
.pagination .current {
  background: #2a8dfd;
  color: #fff;
  border-color: #2a8dfd;
  font-weight: bold;
}

/* Konumlandırma: Önceki solda, Sonraki sağda, orta sayfalar ortada */
.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 756px;
  margin: 0 auto;
}

.pagination-center {
  flex: 1;
  display: flex;
  justify-content: center;
}















/* Inline code */
code {
  background-color: #f5f5f5; /* Açık gri arka plan */
  color: #d6336c; /* Minimal pembe/mor ton */
  font-family: 'Fira Code', monospace;
  font-size: 0.95em;
  padding: 2px 6px;
  border-radius: 4px;
}
/* Kod blokları */
pre {
  background-color: #fdfdfd; /* Beyaz tema uyumlu */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  overflow-x: auto;
  font-family: 'Fira Code', monospace;
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
}
/* Kod bloğu içinde <code> */
pre code {
  background: none; /* pre zaten arka plan veriyor */
  color: #000000; /* Mavi ton */
  padding: 0;
  border-radius: 0;
}
/* Hover efektli kod blokları (isteğe bağlı) */
pre:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
/* UL ve OL Listeleri */
ul.wp-block-list, ol.wp-block-list {
  padding-left: 20px; /* Listelerin girintisi */
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333; /* Temanın metin rengi */
}
/* UL LI Stili */
ul.wp-block-list li {
  margin-bottom: 10px; /* Alt boşluk */
  list-style-type: disc; /* Nokta işareti */
}
/* OL LI Stili */
ol.wp-block-list li {
  margin-bottom: 10px;
  list-style-type: decimal; /* Numara */
}
/* UL ve OL'nin ortak küçük ayarları */
ul.wp-block-list li, ol.wp-block-list li {
  padding-left: 5px; /* Hafif iç boşluk */
}
/* İstersen hover efekti ekleyebilirsin (isteğe bağlı) */
ul.wp-block-list li:hover, ol.wp-block-list li:hover {
  color: #222; /* Temanın ana rengi */
}
/* =========================
   Comments Container
========================= */
.comments-section, .commentlist, #respond {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
}
/* Başlık */
.comments-section h3, #respond h3.comment-reply-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}
/* =========================
   Comment List
========================= */
.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Tek Yorum */
.comment {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fff;
  border-left: 4px solid transparent;
}
.comment:hover {
  border-left: 4px solid #2a8dfd;
  background: #f7faff;
}
/* Avatar */
.comment-author img.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #e0e0e0;
}
/* Yazar ve tarih */
.comment-body {
  flex: 1;
}
.comment-author .fn a {
  font-weight: 600;
  color: #222;
  text-decoration: none;
}
.comment-author .says {
  font-size: 13px;
  color: #666;
  margin-left: 5px;
}
.comment-meta a {
  font-size: 12px;
  color: #999;
  text-decoration: none;
}
.comment-meta a:hover {
  text-decoration: underline;
}
/* Yorum metni */
.comment p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 8px 0 0 0;
}
/* Yanıt linki */
.comment .reply a.comment-reply-link {
  font-size: 13px;
  color: #2a8dfd;
  text-decoration: none;
  transition: all 0.2s ease;
}
.comment .reply a.comment-reply-link:hover {
  text-decoration: underline;
}
/* Admin yorumu özel renk */
.comment.bypostauthor {
  border-left-color: #ff8c00;
}
/* Nested reply (alt yorumlar) */
.comment .children {
  margin-left: 50px;
  border-left: 2px solid #e0e0e0;
  padding-left: 15px;
}
/* Responsive */
@media (max-width: 768px) {
  .comment {
    flex-direction: column;
  }
  .comment .children {
    margin-left: 20px;
    padding-left: 10px;
  }
}
/* =========================
   Modern Comment List & Form
========================= */
/* Comment List Container */
ol.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Tek Yorum */
.comment {
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 15px 20px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease !important;
}
.comment:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08) !important;
}
/* Avatar */
.comment .comment-author img.avatar {
  border-radius: 50% !important;
  margin-right: 12px !important;
  width: 40px !important;
  height: 40px !important;
}
/* Yazar ve Tarih */
.comment .comment-author, .comment .comment-meta {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px !important;
  color: #333 !important;
}
/* Yorum Metni */
.comment p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #222 !important;
  margin-top: 10px !important;
}
/* Yanıt Linki */
.comment .reply a.comment-reply-link {
  font-size: 13px !important;
  color: #2a8dfd !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.comment .reply a.comment-reply-link:hover {
  color: #1666d8 !important;
}
/* Nested Reply */
.comment .children {
  margin-left: 35px !important;
  border-left: 2px solid #e0e0e0 !important;
  padding-left: 15px !important;
}
/* =========================
   Comment Form Container
========================= */
#respond.comment-respond {
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 25px 30px !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03) !important;
  margin-top: 30px !important;
}
/* Form Başlığı */
#respond h3.comment-reply-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  color: #222 !important;
}
#respond h3.comment-reply-title a {
  color: #2a8dfd !important;
  text-decoration: none !important;
}
#respond h3.comment-reply-title a:hover {
  color: #1666d8 !important;
}
/* Cancel Reply Link */
#cancel-comment-reply-link {
  font-size: 13px !important;
  color: #666 !important;
  text-decoration: underline !important;
  margin-left: 10px !important;
}
/* Form Notları */
.comment-notes {
  font-size: 13px !important;
  color: #666 !important;
  margin-bottom: 15px !important;
}
/* Inputs & Textarea */
.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond input[type="url"], .comment-respond textarea {
  width: 100% !important;
  padding: 12px 15px !important;
  margin-bottom: 15px !important;
  border: 1px solid #ccc !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}
.comment-respond input:focus, .comment-respond textarea:focus {
  border-color: #2a8dfd !important;
  box-shadow: 0 0 8px rgba(42, 141, 253, 0.25) !important;
}
/* Checkbox */
.comment-form-cookies-consent {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 13px !important;
  color: #666 !important;
  margin-bottom: 15px !important;
}
/* Submit Button */
.comment-respond input[type="submit"] {
  background: #2a8dfd !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
}
.comment-respond input[type="submit"]:hover {
  background: #1666d8 !important;
  transform: translateY(-2px) !important;
}
/* Responsive */
@media (max-width: 768px) {
  #respond.comment-respond, ol.commentlist {
    padding: 15px !important;
  }
  .comment-respond input[type="submit"] {
    width: 100% !important;
  }
  .comment .children {
    margin-left: 20px !important;
    padding-left: 10px !important;
  }
}
/* =========================
   Comment Form Container
========================= */
.comment-respond {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  margin-top: 30px;
}
/* Form Başlığı */
.comment-respond h3.comment-reply-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}
.comment-respond h3.comment-reply-title a {
  color: #2a8dfd;
  text-decoration: none;
  transition: color 0.2s ease;
}
.comment-respond h3.comment-reply-title a:hover {
  color: #1666d8;
}
/* Cancel Reply Link */
#cancel-comment-reply-link {
  font-size: 13px;
  color: #666;
  text-decoration: underline;
  margin-left: 10px;
}
/* Form Notları */
.comment-notes {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}
/* Input ve Textarea */
.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond input[type="url"], .comment-respond textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.comment-respond input:focus, .comment-respond textarea:focus {
  border-color: #2a8dfd;
  box-shadow: 0 0 8px rgba(42, 141, 253, 0.25);
}
/* Checkbox */
.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}
.comment-form-cookies-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
/* Submit Button */
.comment-respond input[type="submit"] {
  background: #2a8dfd;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}
.comment-respond input[type="submit"]:hover {
  background: #1666d8;
  transform: translateY(-2px);
}
/* Responsive */
@media (max-width: 768px) {
  .comment-respond {
    padding: 20px;
  }
  .comment-respond input[type="submit"] {
    width: 100%;
  }
}
.header-main, .post-card, .widget, footer, pagination, .top-nav-wrap, .commentlist, #respond, .pagination {
  opacity: 0; /* Başlangıçta gizli */
  transform: translateY(30px); /* Hafif aşağı kaymış */
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.header-main.visible, .post-card.visible, .widget.visible, .pagination.visible, .top-nav-wrap.visible, .commentlist.visible, #respond.visible, footer.visible {
  opacity: 1; /* Görünür */
  transform: translateY(0); /* Orijinal pozisyona gel */
}





.widget-popular ul {
  list-style: none; /* hazır işaretleri kaldır */
  padding: 0;
  margin: 0;
}

.widget-popular ul li::before {
  content: "-";  /* buraya istediğin sembol veya yazı */
  margin-right: 6px;
  color: #333;
}


.widget-recent-comments ul {
  list-style: none; /* hazır işaretleri kaldır */
  padding: 0;
  margin: 0;
}

.widget-recent-comments ul li::before {
  content: "-";  /* buraya istediğin sembol veya yazı */
  margin-right: 6px;
  color: #333;
}

.widget-categories ul {
  list-style: none; /* hazır işaretleri kaldır */
  padding: 0;
  margin: 0;
}

.widget-categories ul li::before {
  content: "-";  /* buraya istediğin sembol veya yazı */
  margin-right: 6px;
  color: #333;
}




.widget-archive ul {
  list-style: none; /* hazır işaretleri kaldır */
  padding: 0;
  margin: 0;
}

.widget-archive ul li::before {
  content: "-";  /* buraya istediğin sembol veya yazı */
  margin-right: 6px;
  color: #333;
}



.widget-archive-year ul {
  list-style: none; /* hazır bulletları kaldır */
  padding: 0;
  margin: 0;
}

.widget-archive-year ul li::before {
  content: "-";  /* buraya istediğin sembol veya yazı */
  margin-right: 6px;
  color: #333;
}


.widget-raspberry-pi img {
	width: 100%;
	height: auto;
}
