/* 404 Sayfası Temel Stilleri */
.error-404-wrapper {
  padding: 60px 0;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.error-content {
  margin-bottom: 3rem;
}

/* 404 Başlık Stilleri */
.error-title {
  font-size: 120px;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-subtitle {
  font-size: 2rem;
  color: #343a40;
  margin-bottom: 1rem;
}

.error-description {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Arama Formu */
.error-search {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.error-search .search-form {
  display: flex;
  gap: 10px;
}

.error-search .search-field {
  flex: 1;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #dee2e6;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}

.error-search .search-submit {
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 16px;
  margin-left: 5px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.error-search .search-submit:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.error-search .search-submit .fa,
.error-search .search-submit .fa-search {
  font-size: 18px;
}

/* Ana Sayfa Butonu */
.home-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #ff5722;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  transition: background 0.3s;
}

.home-button:hover {
  background: #0b5ed7;
  color: #fff;
}

/* Hızlı Erişim Butonları */
.quick-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.quick-links .btn {
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Popüler Yazılar */
.popular-posts {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #343a40;
}

.post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card-image {
  position: relative;
  padding-top: 60%;
}

.post-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.post-card-content {
  padding: 1.5rem;
}

.post-card-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.post-card-title a {
  color: #343a40;
  text-decoration: none;
}

.post-card-title a:hover {
  color: #ff5722;
}

.post-card-excerpt {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-card-meta {
  font-size: 0.85rem;
  color: #adb5bd;
}

/* Kategori Bulutu */
.category-cloud {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-radius: 20px;
  color: #495057;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.category-tag:hover {
  background: #ff5722;
  color: #fff;
}

.category-count {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .error-title {
    font-size: 100px;
  }

  .error-subtitle {
    font-size: 1.75rem;
  }

  .error-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .error-404-wrapper {
    padding: 40px 0;
  }

  .error-title {
    font-size: 80px;
  }

  .error-subtitle {
    font-size: 1.5rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .quick-links {
    flex-direction: column;
  }

  .quick-links .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .error-title {
    font-size: 60px;
  }

  .error-subtitle {
    font-size: 1.25rem;
  }

  .error-search .search-submit {
    padding: 0 20px;
  }
}

/* 404 Sayfası için Özel Stiller */
body.error404 {
  background: #f8f9fa;
}

.error404 .error-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 15px;
  text-align: center;
}

.error404 .error-title {
  font-size: 120px;
  font-weight: 700;
  color: #ff5722;
  margin: 0 0 20px;
  line-height: 1;
}

.error404 h2 {
  font-size: 28px;
  color: #212529;
  margin-bottom: 15px;
}

.error404 p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 30px;
}

/* Arama Formu Stilleri */
.error404 .error-search {
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.error404 .search-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  overflow: hidden;
}

.error404 .search-group input[type="search"] {
  flex: 1;
  height: 50px;
  padding: 0 20px;
  border: none;
  background: none;
  font-size: 16px;
  outline: none;
}

.error404 .search-group .search-submit {
  width: 50px;
  height: 50px;
  border: none;
  background: #ff5722;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.error404 .search-group .search-submit:hover {
  background: #0b5ed7;
}

/* Son Yazılar Bölümü */
.error404 .recent-posts {
  margin-top: 50px;
}

.error404 .recent-posts h3 {
  font-size: 24px;
  color: #212529;
  margin-bottom: 30px;
  text-align: center;
}

.error404 .post-card {
  height: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.error404 .post-card:hover {
  transform: translateY(-5px);
}

.error404 .post-thumbnail {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.error404 .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error404 .post-content {
  padding: 20px;
}

.error404 .post-content h4 {
  font-size: 18px;
  margin: 0 0 10px;
  line-height: 1.4;
}

.error404 .post-content h4 a {
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
}

.error404 .post-content h4 a:hover {
  color: #ff5722;
}

.error404 .post-meta {
  font-size: 14px;
  color: #6c757d;
}

.error404 .post-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.error404 .post-date i {
  color: #ff5722;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .error404 .error-title {
    font-size: 100px;
  }

  .error404 h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .error404 .error-content {
    margin: 40px auto;
  }

  .error404 .error-title {
    font-size: 80px;
  }

  .error404 h2 {
    font-size: 20px;
  }

  .error404 p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .error404 .error-title {
    font-size: 60px;
  }

  .error404 .error-search {
    padding: 0;
  }

  .error404 .post-content {
    padding: 15px;
  }

  .error404 .post-content h4 {
    font-size: 16px;
  }
}

/* 404 Sayfası Optimize Edilmiş Stiller */
.error-404-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.error-404 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.error-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--wp--preset--color--primary, #ff5722);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.error-subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--wp--preset--color--dark, #212529);
  margin-bottom: 1rem;
}

.error-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--wp--preset--color--secondary, #6c757d);
  margin-bottom: 2rem;
}

/* Arama Formu */
.error-search {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.error-search .search-form {
  display: flex;
  gap: 0.5rem;
}

.error-search .search-field {
  flex: 1;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--wp--preset--color--border, #dee2e6);
  border-radius: 1.5rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.error-search .search-field:focus {
  border-color: var(--wp--preset--color--primary, #ff5722);
}

.error-search .search-submit {
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 16px;
  margin-left: 5px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.error-search .search-submit:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.error-search .search-submit .fa,
.error-search .search-submit .fa-search {
  font-size: 18px;
}

/* Ana Sayfa Butonu */
.home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--wp--preset--color--primary, #ff5722);
  color: #fff;
  text-decoration: none;
  border-radius: 1.5rem;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.home-button:hover {
  background: var(--wp--preset--color--primary-dark, #0b5ed7);
  color: #fff;
}

.home-button i {
  font-size: 1.1rem;
}

/* Logo ve Site Başlığı Stilleri */
.logo.theme-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.text-logo {
  display: block !important;
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.text-logo a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-logo a:hover {
  color: var(--wp--preset--color--primary, #ff5722);
}

/* Logo Container */
.logo.theme-logo {
  position: relative;
  z-index: 100;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
  .text-logo {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .text-logo {
    font-size: 20px;
  }

  .logo.theme-logo {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .text-logo {
    font-size: 18px;
  }
}

[class^="fa-bars"],
.fa-bars {
  margin-top: 20px;
}
.far,
[class*=" fa-regular-"] {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400;
}

.fab,
[class*=" fa-brands-"] {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400;
}

/* Header İkonları */
.header-icons i {
  font-size: 18px;
  width: auto;
  height: auto;
  line-height: 1;
  vertical-align: middle;
  margin: 0 5px;
}

/* Menü İkonları */
.menu-item i {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

/* Geliştirilmiş Sosyal Medya İkonları Stili */
.wp-block-social-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  margin-top: 10px !important;
}

.wp-block-social-links .wp-block-social-link {
  transition: all 0.3s ease !important;
  margin: 0 !important;
}

.wp-block-social-links .wp-block-social-link:hover {
  transform: translateY(-5px) !important;
}

.wp-block-social-links .wp-social-link a {
  padding: 0.5em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
}

.wp-block-social-links .wp-social-link svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentcolor;
}

/* Sosyal Medya Bağlantıları İçin Renk Ayarları */
.wp-social-link-facebook a {
  background-color: #1877f2 !important;
  color: #fff !important;
}

.wp-social-link-instagram a {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  ) !important;
  color: #fff !important;
}

.wp-social-link-x a,
.wp-social-link-twitter a {
  background-color: #fff !important;
  color: #000 !important;
}

.wp-social-link-pinterest a {
  background-color: #ff0000 !important;
  color: #fff !important;
}

.wp-social-link-tumblr a {
  background-color: #fff !important;
  color: #000 !important;
}

.wp-social-link-tumblr a:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.wp-social-link-linkedin a {
  background-color: #0077b5 !important;
  color: #fff !important;
}

/* Footer'daki Sosyal Medya İkonları Özel Stili */
.footer-widget .wp-block-social-links,
.footer_four_Widget .wp-block-social-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 15px !important;
  margin-left: -8px !important;
  justify-content: flex-start !important;
}

.footer-widget .wp-block-social-links .wp-social-link {
  margin: 0 !important;
}

/* Mobil Footer Menü - Açılır Kapanır */
@media (max-width: 991px) {
  .footer_two_Widget,
  .footer_three_Widget,
  .footer_four_Widget {
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
  }

  .footer_two_Widget .widget-title,
  .footer_three_Widget .widget-title,
  .footer_four_Widget .widget-title,
  .footer_two_Widget h3,
  .footer_three_Widget h3,
  .footer_four_Widget h3,
  .footer_two_Widget h4,
  .footer_three_Widget h4,
  .footer_four_Widget h4 {
    padding: 15px 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    display: block;
    width: 100%;
    /* Mobil tıklama için alan büyütme */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .footer_two_Widget .widget-title:after,
  .footer_three_Widget .widget-title:after,
  .footer_four_Widget .widget-title:after,
  .footer_two_Widget h3:after,
  .footer_three_Widget h3:after,
  .footer_four_Widget h3:after,
  .footer_two_Widget h4:after,
  .footer_three_Widget h4:after,
  .footer_four_Widget h4:after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px; /* Daha büyük ve belirgin + işareti */
    font-family: Arial, sans-serif;
    color: #ff5722; /* Daha belirgin renk */
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
  }

  .footer_two_Widget.active .widget-title:after,
  .footer_three_Widget.active .widget-title:after,
  .footer_four_Widget.active .widget-title:after,
  .footer_two_Widget.active h3:after,
  .footer_three_Widget.active h3:after,
  .footer_four_Widget.active h3:after,
  .footer_two_Widget.active h4:after,
  .footer_three_Widget.active h4:after,
  .footer_four_Widget.active h4:after {
    content: "-";
  }

  /* Sosyal medya ikonları her zaman görünür */
  .footer-widget .wp-block-social-links,
  .footer_four_Widget .wp-block-social-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
  }

  /* Tıklanabilir menü başlığı üzerine gel efekti */
  .footer_two_Widget .widget-title:active,
  .footer_three_Widget .widget-title:active,
  .footer_four_Widget .widget-title:active,
  .footer_two_Widget h3:active,
  .footer_three_Widget h3:active,
  .footer_four_Widget h3:active,
  .footer_two_Widget h4:active,
  .footer_three_Widget h4:active,
  .footer_four_Widget h4:active {
    background-color: rgba(255, 255, 255, 0.05);
  }
}

/* Arama İkonu */
.search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 10px;
}

.search-icon i {
  font-size: 22px;
}

.search-icon:hover i {
  transform: scale(1.1);
}

/* İcofont arama ikonu için özel stil */
.icofont-search-1:before {
  font-size: 22px;
}

/* Mobile Menü İkonu */
.mobile-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

@media (max-width: 991px) {
  .mobile-menu-icon {
    display: block;
  }
}

/* Buton İkonları */
.btn i,
.button i {
  margin-right: 8px;
  font-size: inherit;
  vertical-align: middle;
}

/* Post Meta İkonları */
.post-meta i {
  margin-right: 5px;
  font-size: 14px;
  color: var(--wp--preset--color--primary, #ff5722);
}

/* Footer İkonları */
.footer-social i {
  font-size: 20px;
}

.nav-tabs li::marker {
  display: none;
  content: none;
}

.nav-tabs li {
  list-style: none;
}

/* Mobil görünümde arama butonunun görünür kalması için */
@media (max-width: 767px) {
  .header-action .header-search {
    display: inline-block !important;
  }

  li.header-search {
    display: inline-block !important;
  }

  .header-action > ul li.header-search {
    margin-right: 8px;
  }

  .mobile-nav-toggler {
    margin-left: 5px;
  }

  .menu-nav {
    display: flex !important;
    align-items: center !important;
  }

  .logo {
    margin-right: auto;
  }
}

/* Arama ikonu için boyut düzenlemesi */
.icofont-search-1:before,
.header-action .header-search a i {
  font-size: 25px !important;
}

/* Mobil görünümde header düzeltmeleri */
@media (max-width: 767px) {
  .icofont-search-1:before,
  .header-action .header-search a i {
    font-size: 24px !important;
  }

  /* Mobil menü hizalaması */
  .mobile-nav-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Header action hizalaması */
  .header-action {
    display: flex;
    align-items: center;
  }

  .header-action > ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
}

/* İlgili Gönderiler - Sadeleştirilmiş Versiyon */
.theme_related_post_Grid {
  margin: 40px 0;
  padding: 0;
}

.theme_related_post_Grid h2 {
  font-size: 22px;
  font-weight: 600;
  color: #272727;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-align: left;
  border-bottom: 2px solid transparent;
}

.theme_related_post_Grid h2:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 140px;
  height: 2px;
  background-color: #ff5722;
}

.theme_post_grid__Slider_Wrapper {
  overflow: visible;
  padding: 0;
}

.theme_post_grid__Slider.related-posts-slider {
  margin: 0 -8px;
}

.theme_related_post_Grid .col-md-4 {
  padding: 8px;
  width: 33.333%;
  flex: 0 0 33.333%;
}

.theme_related_post_Grid .news_post_grid_design {
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  height: 100%;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.theme_related_post_Grid .news_post_grid_design:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.theme_related_post_Grid .news-post-grid-thumbnail {
  position: relative;
  overflow: hidden;
}

.theme_related_post_Grid .news-post-grid-thumbnail img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.theme_related_post_Grid .news-post-grid-content {
  padding: 16px;
}

.theme_related_post_Grid .author-name {
  display: none;
}

.theme_related_post_Grid .post-title {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme_related_post_Grid .post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.theme_related_post_Grid .post-title a:hover {
  color: #ff5722;
}

.theme_related_post_Grid .post-excerpt-box {
  display: none;
}

.theme_related_post_Grid .post-meta-items {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #777;
  gap: 12px;
}

.theme_related_post_Grid .category-box {
  margin-right: auto;
}

.theme_related_post_Grid .category-box a {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  background-color: #ff5722;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.theme_related_post_Grid .category-box a:hover {
  background-color: #e64a19;
  color: #fff;
}

.theme_related_post_Grid .date-box,
.theme_related_post_Grid .read-time-box {
  font-size: 11px;
  color: #999;
  display: flex;
  align-items: center;
}

.theme_related_post_Grid .date-box:before {
  content: "\f133";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: #999;
  margin-right: 4px;
  font-size: 10px;
}

.theme_related_post_Grid .read-time-box {
  display: none;
}

/* İlgili Gönderiler - Genişletilmiş Container */
.theme_related_post_Grid .container-fluid {
  max-width: 1600px;
  margin: 0 auto;
}

.theme_related_post_Grid .container-fluid.px-lg-4 {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 768px) {
  .theme_related_post_Grid .container-fluid.px-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .theme_related_post_Grid .col-md-4 {
    margin-bottom: 15px;
  }

  .theme_related_post_Grid .news_post_grid_design {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .theme_related_post_Grid h2:after {
    width: 80px;
  }

  .theme_related_post_Grid .category-box a {
    padding: 3px 12px;
    font-size: 12px;
    background-color: #ff5722;
    color: #fff;
    font-weight: 500;
  }
}

.input-group-btn.search-button button:hover,
.search-submit:hover,
button.input-group-btn.search-button:hover,
button.search-submit:hover {
  background-color: #e64a19 !important;
  border-color: #e64a19 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
}

/* 404 sayfası arama alanı stilini düzenle */
.error-search .search-form {
  display: flex !important;
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  gap: 5px !important;
}

/* Ek buton düzeltmeleri */
.error-search button.search-submit {
  flex-shrink: 0 !important;
  background-color: #ff5722 !important;
  margin-left: 5px !important;
}

/* Özel arama butonu için stil */
.custom-search-btn {
  background-color: #ff5722 !important;
  color: #ffffff !important;
  font-weight: bold !important;
  border: 2px solid #ff5722 !important;
  border-radius: 5px !important;
  padding: 0 20px !important;
  height: 42px !important;
  min-width: 70px !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: visible !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
  margin-left: 7px !important;
  text-transform: uppercase !important;
}

.custom-search-btn:hover {
  background-color: #e64a19 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
}

.custom-search-btn .fa,
.custom-search-btn .fa-search {
  margin-right: 5px !important;
  font-size: 14px !important;
  color: white !important;
}

.search-field:focus {
  border-color: #ff5722 !important;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.25) !important;
  outline: none !important;
}

/* 404 sayfasındaki arama butonunu artırma */
.error-search .custom-search-btn {
  height: 46px !important;
  min-width: 80px !important;
  font-size: 16px !important;
}

/* Arama butonu metin düzenlemeleri */
.search-submit .button-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.search-submit .button-text {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: white !important;
  font-weight: bold !important;
  font-size: 14px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.with-text {
  min-width: 85px !important;
  padding: 5px 15px !important;
}

/* 404 Sayfasındaki buton düzenlemeleri */
.error-search .search-submit .button-text {
  font-size: 16px !important;
}

.error-search .search-submit {
  min-width: 90px !important;
}

/* İkon ve metin arası boşluk bırak */
.search-submit i + .button-text,
.search-submit .fa + .button-text {
  margin-left: 6px !important;
}

/* Son çare olarak eklenen düzeltmeler - Arama kutusunu düzeltme */
body .search-submit,
body .input-group-btn.search-button,
body button.search-submit,
body input[type="submit"].search-submit {
  background-color: #ff5722 !important;
  color: white !important;
  border: none !important;
  border-radius: 4px !important;
  height: 50px !important;
  min-height: 50px !important;
  min-width: 80px !important;
  padding: 5px 15px !important;
  margin-left: 5px !important;
  font-weight: bold !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  position: static !important;
  float: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body .search-submit:after,
body button.search-submit:after {
  content: "Ara" !important;
  display: inline-block !important;
  margin-left: 5px !important;
  font-size: 14px !important;
  font-weight: bold !important;
  color: white !important;
  text-transform: uppercase !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body .search-submit .fa-search:before,
body .search-submit .fa:before,
body button.search-submit .fa-search:before,
body button.search-submit .fa:before {
  font-family: "Font Awesome 6 Free" !important;
  content: "\f002" !important;
  font-weight: 900 !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: white !important;
  font-size: 14px !important;
}

/* Buton içindeki "Ara" textini göster */
body .search-submit span,
body button.search-submit span,
body .search-submit .button-text,
body button.search-submit .button-text {
  display: inline-block !important;
  position: static !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-left: 5px !important;
  color: white !important;
  font-weight: bold !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  height: auto !important;
  width: auto !important;
  clip: auto !important;
  overflow: visible !important;
}

/* Hover etkisi */
body .search-submit:hover,
body button.search-submit:hover {
  background-color: #e64a19 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

body .search-field {
  flex: 1 !important;
  height: 46px !important;
  padding: 0 15px !important;
  font-size: 16px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
}

/* 404 sayfası için düzeltme */
body.error404 .error-search .search-submit {
  min-width: 90px !important;
}

/* Arama form düzeltmesi */
@media (max-width: 767px) {
  body .search-submit,
  body button.search-submit {
    min-width: 60px !important;
    padding: 5px 10px !important;
  }
}

/* Mobil görünüm için düzeltme */
@media (max-width: 576px) {
  body .search-submit:after,
  body button.search-submit:after {
    content: "" !important;
  }

  body .search-submit,
  body button.search-submit {
    min-width: 46px !important;
    width: 46px !important;
    padding: 5px !important;
  }
}

/* Sadeleştirilmiş arama formu stilleri */
body .search-submit {
  background-color: #ff5722 !important;
  color: white !important;
  border: none !important;
  border-radius: 4px !important;
  height: 42px !important;
  min-width: 60px !important;
  padding: 0 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 5px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: background-color 0.3s !important;
}

body .search-submit:hover {
  background-color: #e64a19 !important;
}

body .search-field {
  flex: 1 !important;
  height: 42px !important;
  border-radius: 4px !important;
  border: 1px solid #ddd !important;
  padding: 0 15px !important;
  font-size: 14px !important;
}

body .search-submit .fa,
body .search-submit .fa-search {
  margin-right: 5px !important;
  font-size: 14px !important;
}

/* 404 sayfası için düzeltme */
.error-search .search-form {
  max-width: 500px !important;
  margin: 0 auto 30px !important;
}

/* Mobil görünüm için düzeltme */
@media (max-width: 576px) {
  body .search-submit {
    min-width: 50px !important;
    padding: 0 10px !important;
  }
}

/* Basit arama butonu stili */
.search-submit {
  background-color: #ff5722 !important;
  color: white !important;
  border: none !important;
  height: 40px !important;
  min-width: 40px !important;
  display: inline-block !important;
  border-radius: 4px !important;
  padding: 0 10px !important;
  margin-left: 5px !important;
  font-size: 14px !important;
  font-family: Arial, sans-serif !important;
  font-weight: normal !important;
  line-height: 40px !important;
  text-align: center !important;
}

.search-submit .fa,
.search-submit .fa-search {
  margin-right: 5px !important;
}

/* Placeholder metin rengi */
.search-field::placeholder,
input[type="search"]::placeholder,
input[name="s"]::placeholder,
.form-control::placeholder {
  color: #666 !important;
  opacity: 1 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* Firefox için placeholder düzeltmesi */
.search-field::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[name="s"]::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #666 !important;
  opacity: 1 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* Edge için placeholder düzeltmesi */
.search-field::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[name="s"]::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* Webkit tarayıcılar için */
.search-field::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[name="s"]::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
  font-family: "Open Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* Arama alanı odaklandığında */
.search-field:focus,
input[type="search"]:focus,
input[name="s"]:focus,
.form-control:focus {
  border-color: #ff5722 !important;
  box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1) !important;
  outline: none !important;
}

/* Header actions kısmını düzenleme */
.header-action {
  margin-left: 15px;
  flex: 0 0 auto;
  width: auto;
  max-width: 35px;
}

/* Arama ikonu için düzenleme */
.header-action ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.header-action ul li {
  margin: 0;
  padding: 0;
}

.header-action ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.header-action > ul li::before {
  display: none;
}

/* 404 Sayfası Temel Stilleri */
.error-404-wrapper {
  padding: 60px 0;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.error-content {
  margin-bottom: 3rem;
}

/* 404 Başlık Stilleri */
.error-title {
  font-size: 120px;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 1rem;
  line-height: 1;
}

.error-subtitle {
  font-size: 2rem;
  color: #343a40;
  margin-bottom: 1rem;
}

.error-description {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Sidebar - Turuncu Liste Simgesi Gizleme */
.wp-block-latest-posts__list li::before,
.wp-block-latest-posts__list li::marker,
.sidebar .wp-block-latest-posts__list li::before,
.sidebar .wp-block-latest-posts__list li::marker,
.sidebar-widget .wp-block-latest-posts__list li::before,
.sidebar-widget .wp-block-latest-posts__list li::marker,
.blog-sidebar .wp-block-latest-posts__list li::before,
.blog-sidebar .wp-block-latest-posts__list li::marker {
  display: none !important;
  content: none !important;
  color: transparent !important;
}

/* Stil eklemeye tüm liste elemanlarını kapsayacak şekilde devam ediyoruz */
.wp-block-latest-posts__list li,
.sidebar .wp-block-latest-posts__list li,
.sidebar-widget .wp-block-latest-posts__list li,
.blog-sidebar .wp-block-latest-posts__list li,
.menu li,
ul.menu li,
.menu-main-menu-container ul li,
.menu-footer-nav-container ul li,
.nav-menu li,
.footer-widget ul li {
  list-style: none !important;
  list-style-type: none !important;
}

.cat-item::marker,
.cat-item::before,
.cat-item-23::marker,
.cat-item-8::marker,
.cat-item-5::marker,
.cat-item-2::marker,
.cat-item-22::marker,
.cat-item-6::marker,
.cat-item-23::before,
.cat-item-8::before,
.cat-item-5::before,
.cat-item-2::before,
.cat-item-22::before,
.cat-item-6::before,
.blog-sidebar .widget ul li::before {
  display: none !important;
  content: none !important;
  color: transparent !important;
}

/* Arama Formu */
.error-search {
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Contact Form 7 - Modern Tasarım */
.wpcf7 {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.wpcf7 h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

.wpcf7-form {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.wpcf7-form p {
  margin-bottom: 15px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background-color: #f4f4f4;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

.wpcf7 textarea {
  height: 150px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 15px 30px;
  background-color: #ff5e14;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 20px auto 0;
  text-align: center;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #e04d0d;
}

/* Form stilini iyileştirme */
.wpcf7-form-control-wrap {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

/* Hata mesajları */
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

.wpcf7-response-output {
  margin: 25px 0 0 0 !important;
  padding: 12px 20px !important;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #e8f5e9;
  border-color: #4caf50 !important;
  color: #2e7d32;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background-color: #ffebee;
  border-color: #f44336 !important;
  color: #c62828;
}

/* Spinner */
.wpcf7-spinner {
  display: block;
  margin: 10px auto !important;
}

/* Placeholder stilini özelleştirme */
.wpcf7 ::placeholder {
  color: #777;
  opacity: 1;
}

/* Elementor veya tema ile daha iyi uyum */
.elementor-widget-wrap .wpcf7,
.widget .wpcf7 {
  margin: 0;
  width: 100%;
}

/* Mobil düzenleme */
@media (max-width: 768px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 14px 20px;
  }

  .wpcf7 h2 {
    font-size: 24px;
  }
}

/* İletişim formu ikinci görseldeki gibi düzenleme - FULL FORM */
.contact-modern-form .wpcf7-form {
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-modern-form .wpcf7 h2 {
  margin-bottom: 25px;
  color: #333;
  text-align: center;
}

.contact-modern-form .wpcf7-form input[type="text"],
.contact-modern-form .wpcf7-form input[type="email"],
.contact-modern-form .wpcf7-form textarea {
  background-color: #f7f7f7;
  border: 1px solid #efefef;
  transition: all 0.3s;
}

.contact-modern-form .wpcf7-form input[type="text"]:focus,
.contact-modern-form .wpcf7-form input[type="email"]:focus,
.contact-modern-form .wpcf7-form textarea:focus {
  background-color: #fff;
  border-color: #ff5e14;
  box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.1);
}

.contact-modern-form .wpcf7-form input[type="submit"] {
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(255, 94, 20, 0.3);
}

/* İçindekiler Tablosu - Ultra Temiz Versiyon */
.rank-math-toc-container {
  margin-bottom: 25px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.rank-math-toc-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ff5722;
  border-radius: 8px 0 0 8px;
}

/* TOC Başlık */
.rank-math-toc-container .toc-header {
  margin-bottom: 10px;
}

.rank-math-toc-container .rank-math-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding: 0;
}

/* TOC İçerik */
.rank-math-toc-container nav,
.rank-math-toc-container .toc-content {
  display: block;
  width: 100%;
}

/* BROWSER LİSTE İŞARETLERİNİ TAMAMEN TEMİZLE */
.rank-math-toc-container ul,
.rank-math-toc-container ul li,
.rank-math-toc-container .toc-content ul,
.rank-math-toc-container .toc-content ul li,
#rank-math-toc ul,
#rank-math-toc li {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
}

.rank-math-toc-container ul li::marker,
.rank-math-toc-container ul li::before,
.rank-math-toc-container li::marker,
#rank-math-toc ul li::marker,
#rank-math-toc li::marker {
  display: none !important;
  content: none !important;
}

/* ÖZEL İŞARET TAMAMEN TEMİZLENDİ - SADECE BU KULLANILACAK */
.rank-math-toc-container li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.4;
}

.rank-math-toc-container li:last-child {
  margin-bottom: 0;
}

/* SADELEŞTİRİLMİŞ İŞARET */
.rank-math-toc-container li::before {
  content: "•";
  color: #ff5722;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
}

/* H3 BAŞLIKLARI */
.rank-math-toc-container li.toc-level-3 {
  padding-left: 30px;
}

.rank-math-toc-container li.toc-level-3::before {
  left: 15px;
}

/* LINK STİLLERİ */
.rank-math-toc-container a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.rank-math-toc-container a:hover {
  color: #ff5722;
}

/* MOBİL GÖRÜNÜM */
@media (max-width: 768px) {
  .rank-math-toc-container {
    padding: 15px;
  }

  .rank-math-toc-container .rank-math-title {
    font-size: 18px;
  }

  .rank-math-toc-container li {
    font-size: 14px;
  }

  .rank-math-toc-container li.toc-level-3 {
    padding-left: 25px;
  }

  .rank-math-toc-container li.toc-level-3::before {
    left: 10px;
  }
}

/* Minimal Header Sabitleme ve İlerleme Çubuğu Düzeltmesi */
#sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff !important; /* Saydamlık sorununu çözmek için important ekledim */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header için boşluk ekle */
body {
  padding-top: 80px;
}

#reading-progress-bar {
  height: 100%;
  background: #ff5722;
  width: 0;
  border-radius: 0;
  transition: width 0.2s ease;
  box-shadow: 0 1px 3px rgba(255, 107, 0, 0.3);
}

/* Mobil görünümde header ve ilerleme çubuğu düzenlemesi */
@media (max-width: 991px) {
  body {
    padding-top: 60px; /* Mobil header genellikle daha küçük */
  }

  #reading-progress-container {
    top: 60px; /* JavaScript ile güncellenir */
  }
}

/* Sosyal medya ikonları sol hizalı olacak - desktop */
.wp-block-social-links {
  margin-top: 10px !important;
}

.footer-widget .wp-block-social-links {
  justify-content: flex-start !important;
  margin-top: 15px !important;
  margin-left: -8px !important;
}

.footer_four_Widget .wp-block-social-links {
  justify-content: flex-start !important;
  margin-top: 15px !important;
}

/* Mobil görünümde sosyal medya ikonları ortalı olacak */
@media (max-width: 991px) {
  .wp-block-social-links,
  .footer-widget .wp-block-social-links,
  .footer_four_Widget .wp-block-social-links {
    justify-content: center !important;
    margin-left: 0 !important;
    width: 100% !important;
    padding: 10px 0 15px !important;
  }
}
/* Responsive Tabs Styling for Tan Kesif */

.post-block-element .nav-tabs .nav-item {
  margin: 0 3px 5px;
  flex: 0 0 auto;
}

.post-block-element .nav-tabs .nav-link:hover {
  background-color: #f0f0f0;
}

.post-block-element .tab-content {
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .post-block-element .nav-tabs {
    justify-content: center;
  }

  .post-block-element .nav-tabs .nav-item {
    margin: 0 2px 5px;
  }

  .post-block-element .nav-tabs .nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .post-block-element .nav-tabs {
    justify-content: center;
    padding-bottom: 5px !important;
    gap: 5px;
  }

  .post-block-element .nav-tabs::-webkit-scrollbar {
    height: 3px;
  }

  .post-block-element .nav-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .post-block-element .nav-tabs::-webkit-scrollbar-thumb {
    background: #888;
  }

  .post-block-element .nav-tabs .nav-item {
    flex: 0 0 auto;
    margin: 0 2px;
  }

  .post-block-element .nav-tabs .nav-link {
    padding: 6px 8px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .post-block-element .nav-tabs .nav-link {
    padding: 5px 7px;
    font-size: 11px;
  }

  .post-block-element .section-title {
    display: flex;
    flex-direction: column;
  }
}

/* Tab content styling */
.post-block-element .theme_post_Tab__content {
  margin-top: 15px;
}

/* Now let's add the specific classes that match the HTML structure */
.news_tab_Block .section-title {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .news_tab_Block .section-title {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .news_tab_Block .section-title h2 {
    margin-bottom: 0;
  }
}

.news_tab_Block .nav-tabs li.nav-item {
  margin: 0 3px 5px;
  flex: 0 0 auto;
}

.news_tab_Block .nav-tabs li a.nav-link:hover {
  background-color: #f0f0f0;
}

/* Responsive adjustments for exact structure */
@media (max-width: 992px) {
  .news_tab_Block .nav-tabs li.nav-item {
    margin: 0 2px 5px;
  }

  .news_tab_Block .nav-tabs li a.nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .news_tab_Block .nav-tabs::-webkit-scrollbar {
    height: 3px;
  }

  .news_tab_Block .nav-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .news_tab_Block .nav-tabs::-webkit-scrollbar-thumb {
    background: #888;
  }

  .news_tab_Block .nav-tabs li.nav-item {
    flex: 0 0 auto;
    margin: 0;
  }

  .news_tab_Block .nav-tabs li a.nav-link {
    padding: 6px 8px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .news_tab_Block .nav-tabs li a.nav-link {
    padding: 5px 7px;
    font-size: 11px;
  }

  .news_tab_Block .section-title {
    display: flex;
    flex-direction: column;
  }
}

/* Add specific class for equal width tabs on desktop/tablet */
@media (min-width: 769px) {
  .news_tab_Block .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .news_tab_Block .nav-tabs li.nav-item {
    flex: 1 1 0;
    max-width: fit-content;
    text-align: center;
  }
}

.post-block-element.news_tab_Block .nav.nav-tabs > li {
  margin-bottom: -1px;
  position: relative;
  display: block;
}

@media (min-width: 769px) {
  .post-block-element.news_tab_Block .nav.nav-tabs > li {
    float: left;
    min-width: 100px;
    text-align: center;
  }

  .post-block-element.news_tab_Block .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .post-block-element.news_tab_Block .section-title ul.nav.nav-tabs {
    margin-bottom: 0 !important;
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .post-block-element.news_tab_Block .section-title {
    flex-direction: column;
  }

  .post-block-element.news_tab_Block .section-title h2 {
    margin-bottom: 15px;
  }

  .post-block-element.news_tab_Block .nav.nav-tabs > li {
    display: inline-block;
    float: none;
    margin-right: 5px;
  }

  .post-block-element.news_tab_Block .nav.nav-tabs > li:last-child {
    margin-right: 0;
  }
}

/* Exact structure match for news_tab_Block */
.post-block-element.news_tab_Block .section-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.post-block-element.news_tab_Block .section-title h2.tab-item-title {
  margin-bottom: 15px;
  font-size: 18px;
}

.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs
  > li.nav-item
  > a.nav-link:hover {
  background-color: #f0f0f0;
}

/* Target the specific span element inside the tab item */
.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs
  > li.nav-item
  > a.nav-link
  .tab_menu_Item {
  display: block;
}

/* Tab content styling */
.post-block-element.news_tab_Block .theme_post_Tab__content.tab-content {
  margin-top: 15px;
}

/* Responsive adjustments for desktop/large tablets */
@media (min-width: 992px) {
  .post-block-element.news_tab_Block .section-title {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .post-block-element.news_tab_Block .section-title h2.tab-item-title {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .post-block-element.news_tab_Block .section-title ul.nav.nav-tabs {
    flex: 1 1 auto;
    justify-content: flex-end;
    border-bottom: none;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item {
    margin: 0 5px;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item:last-child {
    margin-right: 0;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item
    > a.nav-link {
    padding: 8px 15px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .post-block-element.news_tab_Block .section-title ul.nav.nav-tabs {
    justify-content: flex-start;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item {
    flex: 0 0 auto;
    max-width: fit-content;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item
    > a.nav-link {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Small devices (landscape phones) */
@media (max-width: 767px) {
  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs::-webkit-scrollbar {
    height: 3px;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs::-webkit-scrollbar-thumb {
    background: #888;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item {
    flex: 0 0 auto;
    margin: 0 2px;
    white-space: nowrap;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item
    > a.nav-link {
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* Extra small devices (phones) */
@media (max-width: 576px) {
  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item
    > a.nav-link {
    padding: 5px 8px;
    font-size: 11px;
  }
}

/* Extra small devices (small phones) */
@media (max-width: 420px) {
  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item
    > a.nav-link {
    padding: 4px 6px;
    font-size: 10px;
  }

  .post-block-element.news_tab_Block
    .section-title
    ul.nav.nav-tabs
    > li.nav-item {
    margin: 0 1px;
  }
}

/* Make sure the tabs are clickable and have proper spacing */
.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs
  > li.nav-item
  > a.nav-link {
  cursor: pointer;
  position: relative;
  display: block;
}

/* Target specifically the HTML structure in the user's provided code */
.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs[role="tablist"]
  > li.nav-item
  > a.nav-link[role="tab"] {
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 4px 4px 0 0 !important;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  color: #333;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
@media (max-width: 410px) { 
.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs[role="tablist"]
  > li.nav-item
  > a.nav-link[role="tab"] {
	padding: 8px 2px;
}
}
/* Add more specificity to handle active state */
.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs
  > li.nav-item
  > a.nav-link.active,
.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs
  > li.nav-item
  > a.nav-link[aria-selected="true"],
.post-block-element.news_tab_Block
  .section-title
  ul.nav.nav-tabs
  > li.nav-item.active
  > a.nav-link {
  background-color: #ff5722 !important;
  color: #fff !important;
  border-color: #ff5722 !important;
}
@media (max-width: 765px) {
  ul.nav.nav-tabs[role="tablist"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    gap: 8px;
    padding: 0;
    justify-items: center;
  }

  ul.nav.nav-tabs[role="tablist"] li.nav-item {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  ul.nav.nav-tabs[role="tablist"] li.nav-item a.nav-link {
    display: block;
    width: 100%;
    font-size: 13px;
    white-space: normal;
    padding: 6px 4px;
    box-sizing: border-box;
  }
}

/* Yorum formu hata durumları için stil */
#comment-form-error {
  padding: 10px 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}

#commentform input:focus,
#commentform textarea:focus {
  outline: none;
  border-color: #80bdff;
}
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS (TOC) – RANK MATH
--------------------------------------------------------------*/
#rank-math-toc,
.rank-math-toc,
.rank-math-toc-container div#rank-math-toc {
	display: block;
	background-color: #f9f9f9;
	border: 1px solid #eee;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	width: 100%;
	clear: both;
}

.rank-math-toc-container {
	margin-bottom: 30px;
	clear: both;
}

#rank-math-toc .rank-math-title,
#rank-math-toc h2,
.rank-math-toc .rank-math-title,
.rank-math-toc h2 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 15px;
	margin-top: 0;
}

#rank-math-toc ol,
#rank-math-toc ul,
.rank-math-toc ol,
.rank-math-toc ul {
	padding-left: 20px;
	margin-left: 0;
	margin-bottom: 0;
	list-style-position: outside;
}

#rank-math-toc li,
.rank-math-toc li {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.6;
}

#rank-math-toc li a,
.rank-math-toc li a {
	color: #555;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 15px;
	line-height: 1.6;
	padding: 3px 0;
	display: inline-block;
}

#rank-math-toc li a:hover,
.rank-math-toc li a:hover {
	color: #ff5722;
	text-decoration: none;
}

/* Temaya gömülü başka TOC varsa kapat */
#newsify-toc,
div#newsify-toc {
	display: none !important;
}

/* Progress Bar Styles */
#reading-progress-container {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9990;
  background: transparent;
  pointer-events: none;
  opacity: 0.9;
}
#reading-progress-bar {
  height: 100%;
  width: 0;
  background: #ff5722;
  box-shadow: 0 1px 3px rgba(255, 107, 0, 0.3);
  transition: width 0.2s ease;
}
@media (max-width: 991px) {
  #reading-progress-container {
    top: 60px;
  }
}
/*--------------------------------------------------------------
>>> BLOG GÖRSEL ORANLARI
--------------------------------------------------------------*/
.blog-thumb img,
.blog-item.post-wrapper .blog-thumb img,
.blog-area-two .blog-item.post-wrapper .blog-thumb img{
	width:100%;
	height:300px;
	object-fit:cover;
	display:block;
}
.featured-blog .blog-thumb img{height:400px;}
.blog-item.post-wrapper{margin-bottom:30px;}
.blog-thumb{overflow:hidden;position:relative;margin:0;padding:0;}


/*--------------------------------------------------------------
>>> READ MORE DÜĞMESİ
--------------------------------------------------------------*/
.read-more-btn,
.cat-read-more-btn a,
a.read-more-btn{
	display:inline-block;
	background:#ff5722;
	color:#fff!important;
	padding:8px 16px;
	border-radius:4px;
	font:600 14px/1.2 "Open Sans",sans-serif;
	margin-top:10px;
	text-decoration:none;
	transition:all .3s ease;
	border:none;
	cursor:pointer;
}
.read-more-btn:hover,
.cat-read-more-btn a:hover,
a.read-more-btn:hover{
	background:#e64a19;
	transform:translateY(-1px);
}

/* Read-more butonu kart/layout varyasyonları */
.blog-card .read-more-btn,
.blog-item .read-more-btn{margin-top:15px;}
.cat-read-more-btn{margin-top:15px;}


/*--------------------------------------------------------------
>>> ARAMA ALANI & BUTONU
--------------------------------------------------------------*/
/* Placeholder metni */
.search-field::placeholder,
input[type="search"]::placeholder,
input[name="s"]::placeholder,
.form-control::placeholder{
	color:#666!important;
	opacity:1!important;
	font:400 15px/1.3 "Open Sans",sans-serif;
}
/* Edge & Firefox varyantları isteğe bağlı ekleyebilirsin */

/* Odak stili */
.search-field:focus,
input[type="search"]:focus,
input[name="s"]:focus,
.search-form input:focus{
	border-color:#ff5722!important;
	box-shadow:0 0 0 2px rgba(255,87,34,.1)!important;
	outline:none!important;
}

/* Arama butonu */
button.search-submit,
button.custom-search-btn{
	display:flex;
	align-items:center;
	justify-content:center;
	min-width:85px;
	min-height:42px;
	background:#ff5722;
	color:#fff;
	border:none;
	border-radius:4px;
	padding:8px 15px;
	font:700 14px "Open Sans",sans-serif;
	letter-spacing:.5px;
	box-shadow:0 2px 5px rgba(0,0,0,.2);
	transition:all .3s ease;
	text-transform:uppercase;
}

/* Buton metni/simgesi görünürlüğü */
button.search-submit .button-text,
.custom-search-btn .button-text{
	margin-left:6px;
}

/* 404 sayfası özel */
.error-search .search-submit .button-text{font-size:16px;}

/*--------------------------------------------------------------
>>> TAN KESİF BREADCRUMB
--------------------------------------------------------------*/
.tankesif-breadcrumb {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 12px 16px;
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.breadcrumb-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.breadcrumb-item { color: #495057; display: inline-flex; align-items: center; }
.breadcrumb-item a:hover { color: #005a87; text-decoration: underline; }
.breadcrumb-item.active { font-weight: 600; }
.separator {color: #6c757d; font-size: 12px; }
.separator i { font-size: 12px; }
.fas.fa-home { margin-right: 4px; font-size: 13px; }
.fas.fa-angle-right { font-size: 12px; color: #6c757d; }

/* Responsive */
@media (max-width: 768px) {
	.tankesif-breadcrumb { padding: 10px 12px; font-size: 13px; }
	.breadcrumb-item { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.breadcrumb-item.active { max-width: none; }
}

/*--------------------------------------------------------------
>>>  CUSTOM LOGO
--------------------------------------------------------------*/
.custom-logo-link{display:inline-block;padding:10px 0}
.custom-logo{max-height:60px;width:auto;height:auto;display:block}
@media(max-width:768px){.custom-logo{max-height:50px}}

/*--------------------------------------------------------------
>>>  SEARCH FORM  (buton + input)
--------------------------------------------------------------*/
.search-submit{
	background:#ff5722!important;
	color:#fff!important;
	border:none!important;
	border-radius:4px!important;
	height:42px!important;
	min-width:60px!important;
	display:flex!important;
	align-items:center!important;
	justify-content:center!important;
	margin-left:5px!important;
	transition:background-color .3s!important;
	font-size:14px!important;
}
.search-submit:hover{background:#e64a19!important}
.search-field{
	height:42px!important;
	border-radius:4px!important;
	padding:0 15px!important;
	border:1px solid #ddd!important;
	font-size:14px!important;
}
.search-submit .fa,
.search-submit .fa-search{margin-right:5px!important}
.error-search .search-form{max-width:500px!important;margin:0 auto 30px!important}

/*--------------------------------------------------------------
>>> SEARCH FORM
--------------------------------------------------------------*/
.search-form{flex-wrap:nowrap;align-items:center;gap:5px}

.search-field{
  flex:1;
  height:40px;
  padding:0 15px;
  border:1px solid #ddd;
  border-radius:4px;
  font:400 15px/1.2 "Open Sans",sans-serif;
  color:#333;
  transition:border-color .3s ease,box-shadow .3s ease;
}

.search-field::placeholder{
  color:#666;
  opacity:1;
  font:inherit;
}

.search-field:focus{
  border-color:#ff5722;
  box-shadow:0 0 0 2px rgba(255,87,34,.1);
  outline:none;
}

.search-submit{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:85px;
  height:40px;
  padding:0 16px;
  border:none;
  border-radius:4px;
  background:#ff5722;
  color:#fff;
  font:600 14px "Open Sans",sans-serif;
  letter-spacing:.3px;
  cursor:pointer;
  transition:background .3s ease;
}

.search-submit:hover{background:#e64a19}

/* Erişilebilirlik */
.screen-reader-text{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  border:0;
}
  .hero-heading {
    font-size: 3.5vw;
    font-weight: 700;
    color: #0b101b;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-in-out;
  }

  .hero-heading span {
    color: #ff5722;
  }

  @media (max-width: 768px) {
    .hero-heading {
      font-size: 6vw;
    }
	  body.page .theme-page-spacing .entry-content h1
	  {
	margin-top: -25px;
	}
  }

  @media (max-width: 480px) {
    .hero-heading {
      font-size: 7.5vw;
    }
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }