/* ======================================================
   ARCHIVE / CATEGORY / AUTHOR – CORE
====================================================== */

/* Header */
.archive-header{
  margin: 0 0 30px;
  padding-top: 0;
}

.archive-description{
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  max-width: 760px;
}

/* Sayfa başlığı (Category gibi) */
.archive-page-title{
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0;
  padding-left: 14px;
  position: relative;
}

/* Siyah accent çizgi */
.archive-page-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  border-left: 4px solid #111;
  border-radius: 10px;
}

/* Grid */
.archive-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Kart */
.archive-item{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}

.archive-item:hover{
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

/* Görsel */
.archive-thumb img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* İçerik */
.archive-body{
  padding: 16px 18px 20px;
}

/* Kategori etiketi */
.archive-category{
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #d32f2f;
}

/* Başlık */
.archive-title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-title a{
  color: #111;
  text-decoration: none;
}

.archive-title a:hover{
  color: #d32f2f;
}

/* Meta */
.archive-meta{
  display: flex;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  color: #777;
}

.archive-author::after{
  content: "•";
  margin: 0 6px;
  color: #bbb;
}

/* Pagination */
.archive-pagination{
  margin: 48px 0 0;
}

.archive-pagination .page-numbers{
  display: inline-block;
  padding: 8px 14px;
  margin-right: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

.archive-pagination .page-numbers.current{
  background: #d32f2f;
  color: #fff;
  border-color: #d32f2f;
}

.archive-pagination .page-numbers:hover{
  background: #f5f5f5;
}

/* ======================================================
   AUTHOR BOX
====================================================== */

.author-box{
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 11px 21px 21px;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
}

.author-avatar{
  flex-shrink: 0;
}

.author-avatar img{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.author-badge{
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

/* Badge renkleri */
.badge-editor{
  background: #d32f2f;
  color: #fff;
}
.badge-writer{
  background: #1976d2;
  color: #fff;
}
.badge-designer{
  background: #111;
  color: #fff;
}

/* Bio */
.author-bio{
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* Socials (SVG) */
.author-socials{
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.author-socials a{
  color: #888;
  display: inline-flex;
  align-items: center;
  transition: color .2s ease, transform .2s ease;
}

.author-socials a svg{
  width: 20px;
  height: 20px;
}

.author-socials a:hover{
  color: #d32f2f;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px){
  .archive-grid{
    grid-template-columns: 1fr;
  }

  .archive-thumb img{
    height: 220px;
  }

  .author-box{
    flex-direction: column;
    text-align: center;
  }
}
/* ======================================================
   ARCHIVE LAYOUT DIVIDER
   içerik / sidebar ayırıcı çizgi
====================================================== */

@media (min-width:1025px){

  .archive-layout{ gap: 0; }
  .archive-content{ padding-right: 32px; min-width: 0; }
  .archive-layout .page-sidebar{ padding-left: 32px; border-left: 1px solid rgba(0,0,0,.08); min-width: 0; }
}
@media (min-width:1025px){
  .author-layout{ gap: 0; }
  .author-layout .author-content{ padding-right: 32px; min-width: 0; }
  .author-layout .page-sidebar{ padding-left: 32px; border-left: 1px solid rgba(0,0,0,.08); min-width: 0; }
}
@media (min-width:1025px){
  .search-layout{ gap: 0; }
  .search-layout .search-content{ padding-right: 32px; min-width: 0; }
  .search-layout .page-sidebar{ padding-left: 32px; border-left: 1px solid rgba(0,0,0,.08); min-width: 0; }
}
@media (min-width:1025px){
  .tag-layout{ gap: 0; }
  .tag-layout .tag-content{ padding-right: 32px; min-width: 0; }
  .tag-layout .page-sidebar{ padding-left: 32px; border-left: 1px solid rgba(0,0,0,.08); min-width: 0; }
}
/* ARCHIVE / AUTHOR / SEARCH / TAG SIDEBAR DIVIDER */

@media (min-width:1025px){

  .archive-layout,
  .author-layout,
  .search-layout,
  .tag-layout{
    gap:0;
  }

  .archive-content,
  .author-content,
  .search-content,
  .tag-content{
    padding-right:32px;
    min-width:0;
  }

  .archive-layout .page-sidebar,
  .author-layout .page-sidebar,
  .search-layout .page-sidebar,
  .tag-layout .page-sidebar{
    padding-left:32px;
    border-left:1px solid rgba(0,0,0,.08);
    min-width:0;
  }

}