.blog-single-container {
  display: flex;
  gap: 1%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 20px;
}
.blog-main-col {
  flex: 0 0 70%;
  min-width: 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 32px 32px 40px 32px;
}
.blog-main-col article.single-post-content {
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.blog-main-col .blog-comments {
  max-width: none;
  margin: 0;
  padding: 0;
}
.blog-sidebar-col {
  flex: 0 0 29%;
  background: none;
  border-radius: 5px;
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 900px) {
  .blog-single-container {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }
  .blog-main-col, .blog-sidebar-col {
    flex: 1 1 100%;
    min-width: 0;
    border-radius: 5px;
  }
  .blog-sidebar-col {
    padding: 0;
    min-height: 0;
  }
  .blog-main-col {
    padding: 18px 8px 24px 8px;
  }
}
.post-header {
  text-align: left;
  margin-bottom: 24px;
  margin: 0 0px 0px 10px !important;
}
.post-title {
  text-align: left;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0px 4px 0px !important;
}
.post-meta {
  text-align: left;
  color: #888;
  font-size: 1rem;
  margin-bottom: 18px;
}
.post-thumbnail {
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 24px;
  background: #f3f3f3;
}
.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-content {
  text-align: left;
  padding: 0px !important;
  margin: 0 0px 0px 10px !important;
  color: var(--primary-accent) !important;
}
.post-categories {
  text-align: left;
  margin-bottom: 10px;
}
.post-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  background: #f3f3f3;
  color: #222;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 5px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border: 1px solid #e6e6e6;
}


/* Başlık ve rozetler için ortak konteyner */
.post-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.post-header-row .post-title {
  margin-bottom: 0 !important;
}

.post-header-row .post-badges {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .post-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }
  .post-header-row .post-badges {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* Sidebar blog kartları */
.sidebar-latest-posts {
  display: flex;
  flex-direction: column;
}

.sidebar-post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.18s;
  border: 1px solid #f1f1f1;
}
.sidebar-post-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

.sidebar-post-thumb {
  width: 100%;
  aspect-ratio: 16/6;
  background: #f3f3f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 0 0;
}
.sidebar-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px 5px 0 0;
}
.sidebar-post-thumb-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: calc(100% * 6 / 16);
  background: #f3f3f3;
  border-radius: 5px 5px 0 0;
}

.sidebar-post-info {
  padding: 12px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-post-title {
  font-size: 1.04rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 2px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar-post-date {
  font-size: 0.93rem;
  color: #888;
}

@media (max-width: 900px) {
  .sidebar-latest-posts {
    gap: 14px;
  }
  .sidebar-post-card {
    border-radius: 5px;
  }
  .sidebar-post-thumb, .sidebar-post-thumb img, .sidebar-post-thumb-placeholder {
    border-radius: 5px 5px 0 0;
  }
  .sidebar-post-info {
    padding: 10px 8px 8px 8px;
  }
}

/* Blog arşiv grid ve kartları */
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 0 32px 0;
}

.blog-archive-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.18s;
  border: 1px solid #f1f1f1;
}
.blog-archive-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

.blog-archive-thumb {
  width: 100%;
  aspect-ratio: 16/6;
  background: #f3f3f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 0 0;
}
.blog-archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px 5px 0 0;
}
.blog-archive-thumb-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: calc(100% * 6 / 16);
  background: #f3f3f3;
  border-radius: 5px 5px 0 0;
}

.blog-archive-info {
  padding: 12px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-archive-title {
  font-size: 1.04rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 2px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-archive-date {
  font-size: 0.93rem;
  color: #888;
}

@media (max-width: 900px) {
  .blog-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .blog-archive-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.sidebar-widget {
  border-radius: 5px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.sidebar-title {
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--primary-accent) !important;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .sidebar-widget {
    padding: 12px 6px 12px 6px;
  }
}

.sidebar-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.sidebar-category-btn {
  display: block;
  background: #f7f7f7;
  border-radius: 5px;
  padding: 10px 0;
  text-align: center;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.18s, border 0.18s, color 0.18s;
}
.sidebar-category-btn:hover {
  background: #f7f7f7;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
} 