/* ==========================================================================
   ANA SAYFA GÜNCEL MAKALELER BÖLÜMÜ STİLLERİ
   ========================================================================== */

.articles-section {
  padding: 100px 0 100px 0;
  background-color: #ffffff;
  position: relative;
}

.articles-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* Ortalanmış İkonlu Üst Başlık */
.articles-centered-header {
  text-align: center;
  margin-bottom: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.articles-centered-header .header-icon-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(235, 216, 184, 0.4);
  box-shadow: 0 12px 28px rgba(76, 35, 60, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.articles-centered-header:hover .header-icon-seal {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 36px rgba(76, 35, 60, 0.35);
}

.articles-centered-header .articles-subtitle {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #4C233C;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 24px;
  background: #ffffff;
  border: 1px solid rgba(76, 35, 60, 0.12);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.articles-centered-header .articles-subtitle::before,
.articles-centered-header .articles-subtitle::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #EBD8B8;
  border-radius: 50%;
  display: inline-block;
}

.articles-centered-header .articles-title {
  font-size: 36px;
  font-weight: 700;
  color: #1C1D21;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.articles-centered-header .articles-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* Sade Makaleler Başlığı */
.articles-simple-title {
  font-size: 22px;
  font-weight: 600;
  color: #1C1D21;
  letter-spacing: -0.3px;
  margin-bottom: 32px;
}

/* Ana Sayfa Makaleler Grid Dizilimi */
.home-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-articles-grid .article-card {
  width: 100%;
  min-width: 0;
  margin: 0;
  background: #ffffff;
  border: 1px solid #EAE6E1;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.home-articles-grid .article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(76, 35, 60, 0.12);
  border-color: rgba(76, 35, 60, 0.25);
}

.home-articles-grid .article-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #F4EFF2;
}

.home-articles-grid .article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-articles-grid .article-card:hover .article-image-wrap img {
  transform: scale(1.06);
}

.home-articles-grid .article-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(76, 35, 60, 0.9);
  backdrop-filter: blur(8px);
  color: #EBD8B8;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.home-articles-grid .article-view-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

.home-articles-grid .article-card-body {
  padding: 26px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-articles-grid .article-meta-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: #888888;
  margin-bottom: 14px;
}

.home-articles-grid .article-meta-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-articles-grid .article-meta-info i {
  color: #4C233C;
  font-size: 12px;
}

.home-articles-grid .article-card-title {
  font-size: 14.5px;
  font-weight: 500;
  color: #1C1D21;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.home-articles-grid .article-card:hover .article-card-title {
  color: #4C233C;
}

.home-articles-grid .article-card-excerpt,
.article-card-excerpt {
  display: none !important;
}

.home-articles-grid .article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #F2EEE9;
}

.home-articles-grid .article-read-more {
  font-size: 14px;
  font-weight: 600;
  color: #4C233C;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}

.home-articles-grid .article-card:hover .article-read-more {
  gap: 12px;
  color: #2A1321;
}

.home-articles-grid .article-read-time {
  font-size: 12.5px;
  color: #999999;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Alt Aksiyon Butonu */
.articles-all-btn-wrap {
  text-align: center;
  margin-top: 48px;
}

.articles-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4C233C;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(76, 35, 60, 0.2);
}

.articles-all-btn:hover {
  background: #2A1321;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(76, 35, 60, 0.3);
  color: #EBD8B8;
}

@media (max-width: 992px) {
  .articles-section {
    padding: 80px 24px;
  }
  .home-articles-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* MAKALELER LİSTESİ ÖZEL SAYFA STİLLERİ */
.blog-page-wrapper {
  padding-top: 185px;
  padding-bottom: 80px;
  background-color: #ffffff;
  min-height: 100vh;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* ARAMA VE KATEGORİ SEÇİM ALANI (YAN YANA MODERN BAR) */
.blog-search-bar-wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 48px auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-search-box {
  flex: 2;
  background: #ffffff;
  border: 1px solid #EAE6E1;
  border-radius: 50px;
  padding: 7px 8px 7px 22px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.blog-search-box:focus-within {
  border-color: #4C233C;
  box-shadow: 0 12px 35px rgba(76, 35, 60, 0.12);
}

.blog-search-box i.search-icon {
  font-size: 17px;
  color: #4C233C;
  margin-right: 14px;
}

.blog-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: #1C1D21;
  background: transparent;
}

.blog-search-input::placeholder {
  color: #999999;
}

.blog-search-btn {
  background: #4C233C;
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-search-btn:hover {
  background: #2A1321;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(76, 35, 60, 0.25);
}

/* ÖZEL LÜKS KATEGORİ SEÇİM DROPDOWN */
.blog-category-custom-select {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.blog-category-trigger-btn {
  width: 100%;
  background: #ffffff;
  border: 1px solid #EAE6E1;
  border-radius: 50px;
  padding: 13px 20px 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  color: #1C1D21;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.blog-category-trigger-btn:hover,
.blog-category-custom-select.open .blog-category-trigger-btn {
  border-color: #4C233C;
  box-shadow: 0 12px 35px rgba(76, 35, 60, 0.12);
}

.category-trigger-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-trigger-left i {
  color: #4C233C;
  font-size: 16px;
}

.category-trigger-chevron {
  color: #777777;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.blog-category-custom-select.open .category-trigger-chevron {
  transform: rotate(180deg);
  color: #4C233C;
}

/* AÇILIR MENÜ LİSTESİ (POPUP) */
.blog-category-options-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #EAE6E1;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(76, 35, 60, 0.15);
  list-style: none;
  margin: 0;
  z-index: 100;
  display: none;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(76, 35, 60, 0.2) transparent;
  animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-category-custom-select.open .blog-category-options-menu {
  display: block;
}

.category-option-item {
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.category-option-item i {
  color: #4C233C;
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.category-option-item:hover {
  background: #F7F3F5;
  color: #4C233C;
  font-weight: 600;
  padding-left: 20px;
}

.category-option-item.active {
  background: #4C233C;
  color: #ffffff;
  font-weight: 600;
}

.category-option-item.active i {
  color: #EBD8B8;
}

/* MAKALELER GRID DİZİLİMİ */
.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-articles-grid .article-card {
  width: 100%;
  min-width: 0;
  margin: 0;
  background: #ffffff;
  border: 1px solid #EAE6E1;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.blog-articles-grid .article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(76, 35, 60, 0.12);
  border-color: rgba(76, 35, 60, 0.25);
}

.article-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F4EFF2;
}

.article-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-image-wrap img {
  transform: scale(1.06);
}

.article-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(76, 35, 60, 0.9);
  backdrop-filter: blur(8px);
  color: #EBD8B8;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-view-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

.article-card-body {
  padding: 26px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: #888888;
  margin-bottom: 14px;
}

.article-meta-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta-info i {
  color: #4C233C;
  font-size: 12px;
}

.article-card-title {
  font-size: 14.5px;
  font-weight: 500;
  color: #1C1D21;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.article-card:hover .article-card-title {
  color: #4C233C;
}

.article-card-excerpt {
  display: none;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #F2EEE9;
  margin-top: auto;
}

.article-read-more {
  font-size: 13.5px;
  font-weight: 600;
  color: #4C233C;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}

.article-card:hover .article-read-more {
  gap: 12px;
  color: #2A1321;
}

.article-read-time {
  font-size: 12.5px;
  color: #999999;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* BULUNAMADI KUTUSU (MODERN LÜKS KART TASARIMI) */
.no-articles-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 36px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #EAE6E1;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
  margin: 10px auto 40px auto;
  max-width: 960px;
  width: 100%;
  display: block;
}

.empty-state-seal-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(76, 35, 60, 0.06);
  color: #4C233C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(76, 35, 60, 0.12);
  transition: all 0.3s ease;
}

.no-articles-found:hover .empty-state-seal-icon {
  transform: translateY(-3px) scale(1.05);
  background: #4C233C;
  color: #EBD8B8;
  box-shadow: 0 8px 20px rgba(76, 35, 60, 0.2);
}

.empty-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76, 35, 60, 0.06);
  color: #4C233C;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.no-articles-found h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1C1D21;
  margin-bottom: 16px;
  line-height: 1.35;
}

.no-articles-found p {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 32px auto;
}

.empty-state-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4C233C;
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(76, 35, 60, 0.2);
}

.empty-state-home-btn:hover {
  background: #4C233C;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(76, 35, 60, 0.3);
  color: #ffffff;
}

/* SAYFALAMA (PAGINATION) */
.blog-pagination-wrap {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #E5E0D8;
  color: #1C1D21;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pagination-btn:hover:not(:disabled) {
  background: #F4EFF2;
  color: #4C233C;
  border-color: #4C233C;
  transform: translateY(-2px);
}

.pagination-btn.active {
  background: #4C233C;
  color: #ffffff;
  border-color: #4C233C;
  box-shadow: 0 6px 18px rgba(76, 35, 60, 0.25);
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-page-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .blog-search-bar-wrap {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
  .blog-search-box {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px 8px 20px;
  }
  .blog-category-custom-select {
    width: 100%;
  }
  .blog-articles-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .blog-page-wrapper {
    padding-top: 155px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .blog-search-bar-wrap {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
  }
  .blog-search-box {
    width: 100%;
    box-sizing: border-box;
    padding: 6px 8px 6px 16px;
    border-radius: 40px;
  }
  .blog-search-box i.search-icon {
    font-size: 15px;
    margin-right: 10px;
  }
  .blog-search-input {
    font-size: 13.5px;
    min-width: 0;
  }
  .blog-search-btn {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 30px;
  }
  .blog-category-custom-select {
    width: 100%;
  }
  .blog-category-trigger-btn {
    padding: 12px 18px;
    font-size: 13.5px;
  }
  .blog-articles-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .no-articles-found {
    padding: 50px 20px;
    border-radius: 24px;
  }
  .no-articles-found h3 {
    font-size: 19px;
  }
  .no-articles-found p {
    font-size: 14px;
  }
}

/* MAKALE DETAY SAYFASI ÖZEL DÜZENİ */
.article-detail-wrapper {
  padding-top: 185px;
  padding-bottom: 80px;
  background-color: #ffffff;
  min-height: 100vh;
}

.article-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* SOL: MAKALE ANA KARTI */
.article-main-card {
  background: #ffffff;
  border: 1px solid #EAE6E1;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  max-width: 100%;
  min-width: 0;
}

/* Üst Başlık Satırı (Kategori Rozeti & Okuma Süresi) */
.article-top-header-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.article-detail-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F4F4F5;
  color: #18181B;
  padding: 6px 14px 6px 8px;
  border-radius: 50px;
  border: 1px solid #E4E4E7;
  font-size: 11.5px !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.article-detail-category-badge .cat-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #18181b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.article-reading-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #64748b;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  font-weight: 500;
}

.article-detail-title {
  font-size: 18px !important;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
}

/* Meta Bilgi Çubuğu (Tarih, Okunma, Yazar) */
.article-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 20px;
  margin-bottom: 28px;
  background: #F4F4F5;
  border-radius: 14px;
  border: 1px solid #E4E4E7;
  font-size: 13px !important;
  color: #71717A;
}

.article-detail-meta .meta-row-main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.article-detail-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.article-detail-meta .meta-item i {
  color: #18181B;
  font-size: 13px;
}

.article-detail-meta .meta-item strong {
  color: #18181B;
  font-weight: 700;
}

.article-detail-meta .meta-dot {
  color: #D4D4D8;
  font-size: 14px;
  user-select: none;
}

.article-detail-meta .author-tag {
  color: #18181B;
  font-weight: 600;
}

/* Öne Çıkan Görsel */
.article-featured-image {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Makale İçeriği Tipografisi */
.article-detail-content {
  font-size: 14px !important;
  line-height: 1.9;
  color: #444444;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.article-detail-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1C1D21;
  margin-top: 36px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
}

.article-detail-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: #4C233C;
  border-radius: 4px;
}

.article-detail-content p {
  font-size: 14px;
  margin-bottom: 20px;
}

.article-detail-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.article-detail-content li {
  margin-bottom: 10px;
}

/* SAĞ: SIDEBAR */
.article-sidebar {
  position: static;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #EAE6E1;
  border-radius: 28px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sidebar-author-box {
  text-align: center;
}

.author-avatar-seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px auto;
  border: 2px solid rgba(235, 216, 184, 0.4);
  box-shadow: 0 8px 25px rgba(76, 35, 60, 0.18);
}

.sidebar-author-name {
  font-size: 18px;
  font-weight: 700;
  color: #1C1D21;
  margin-bottom: 4px;
}

.sidebar-author-title {
  font-size: 13px;
  color: #777777;
  margin-bottom: 20px;
}

.sidebar-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  padding: 13px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(76, 35, 60, 0.25);
}

.sidebar-consult-btn:hover {
  background: linear-gradient(135deg, #5A2B48 0%, #3A1A2E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 35, 60, 0.4);
  color: #EBD8B8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .article-detail-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-detail-container {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
  }
  .article-main-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .article-sidebar {
    order: -1;
    position: static;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 8px;
    box-sizing: border-box !important;
  }
  .article-top-header-row {
    justify-content: center;
  }
  .article-detail-title {
    font-size: 18px !important;
    text-align: center;
  }
  .article-detail-meta {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    margin-bottom: 22px !important;
    background: #F4F4F5 !important;
    border-radius: 14px !important;
    border: 1px solid #E4E4E7 !important;
  }
  .article-detail-meta .desktop-only {
    display: none !important;
  }
  .article-detail-content {
    text-align: center !important;
    width: 100% !important;
  }
  .article-detail-content p {
    text-align: center !important;
  }
  .article-detail-content h2 {
    text-align: center !important;
    justify-content: center !important;
  }
  .article-detail-content h2::before {
    display: none !important;
  }
  .article-detail-content ul {
    display: inline-block !important;
    text-align: left !important;
    padding-left: 20px !important;
  }
}

@media (max-width: 767px) {
  .article-detail-wrapper {
    padding-top: 155px;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .article-main-card {
    padding: 24px 16px !important;
    border-radius: 24px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .article-top-header-row {
    justify-content: center;
  }
  .article-detail-title {
    font-size: 18px !important;
    text-align: center;
  }
  .article-detail-meta {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    padding: 12px 14px !important;
    margin-bottom: 20px !important;
    background: #F4F4F5 !important;
    border-radius: 14px !important;
    border: 1px solid #E4E4E7 !important;
  }
  .article-detail-meta .desktop-only {
    display: none !important;
  }
  .article-featured-image {
    height: 240px;
    border-radius: 18px;
    width: 100% !important;
  }
  .article-detail-content {
    font-size: 14.5px;
    text-align: center !important;
    width: 100% !important;
  }
  .article-detail-content p {
    text-align: center !important;
  }
  .article-detail-content h2 {
    font-size: 17px;
    text-align: center !important;
    justify-content: center !important;
  }
  .article-detail-content h2::before {
    display: none !important;
  }
  .article-detail-content ul {
    display: inline-block !important;
    text-align: left !important;
    padding-left: 20px !important;
  }
}

.article-featured-image {
  width: 100%;
  max-width: 100%;
  height: 380px;
  max-height: 380px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #F4EFF2;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
