/* ======================================================
   SINGLE – CONTENT (typography + blocks)
====================================================== */

/* Category */
.single-category{
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
}
.single-category a{
  color: #111;
  text-decoration: none;
}
.single-category a:hover{
  text-decoration: underline;
}

/* Title */
.single-title{
  font-size: 32px;
  line-height: 1.25;
  margin: 6px 0 16px;
}
@media (max-width: 992px){
  .single-title{ font-size: 24px; }
}

/* Meta */
.single-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.single-meta .meta-item{
  height: 40px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 16px 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.single-meta .author-item{ border-left: 4px solid #d32f2f; }
.single-meta .date-item{
  border-left: 4px solid #1976d2;
  color: #555;
}
.single-meta .meta-views{
  border-left: 4px solid #388e3c;
  color: #444;
}
@media (max-width: 992px){
  .single-meta .meta-item{
    height: 36px;
    font-size: 12px;
  }
}

/* Author link */
.author-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.author-link img{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name{
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 992px){
  .author-link img{
    width: 32px;
    height: 32px;
  }
}

/* Featured image */
.single-thumb{
  margin: 40px 0 16px;
  text-align: center;
}
.single-thumb img{
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 16px;
  display: block;
  margin: 0 auto 4px;
}
.single-caption{
  margin-top: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #555;
  text-align: center;
}
.single-caption::before{
  content: "📸  ";
  font-weight: 600;
  color: #333;
}

/* Content typography */
.single-text{
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}
.single-text p{ margin-bottom: 1.6em; }
.single-text img{
  display: block;
  margin: 32px auto;
  border-radius: 12px;
}

/* WP caption fix */
.single-text figure.wp-caption{
  margin: 36px auto 24px;
  text-align: center;
  max-width: 100% !important;
  width: auto !important;
}
.single-text figure.wp-caption img{
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto 6px;
}
.single-text figure.wp-caption figcaption{
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #555;
  text-align: center;
}
.single-text figure.wp-caption figcaption::before{
  content: "📸 ";
  margin-right: 4px;
}

/* Banner */
.single-banner{
  margin: 28px 0;
  text-align: center;
}
.single-banner img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.single-banner-top{
  margin-top: 18px;
  margin-bottom: 20px;
}

/* Share */
.single-share{
  margin: 48px 0 32px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.share-title{
  font-size: 13px;
  font-weight: 700;
  margin-right: 8px;
  color: #555;
}
.share-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  color: #fff !important;
  transition: transform .2s ease, opacity .2s ease;
}
.share-btn:hover{
  opacity: .9;
  transform: translateY(-2px);
}
.share-x{ background: #111; }
.share-facebook{ background: #1877f2; }
.share-whatsapp{ background: #25d366; }

@media (max-width: 768px){
  .single-share{ justify-content: center; }
}

/* Tags */
.single-tags{
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-tags a{
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #d32f2f;
  border-radius: 4px;
  text-decoration: none;
}
.single-tags a:hover{ background: #b71c1c; }

/* Prev / Next */
.post-nav{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 64px 0 24px;
}
.post-nav-item{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.post-nav-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
}
.post-nav-label{
  margin: 14px 14px 8px;
  font-size: 13px;
  font-weight: 800;
}
.post-nav-item img{
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px 8px;
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}
.post-nav-cat{
  margin: 0 14px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
}
.post-nav-item.prev .post-nav-cat{ background: #1976d2; }
.post-nav-item.next .post-nav-cat{ background: #d32f2f; }

.post-nav-item h4{
  margin: 0 14px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

/* Hover glow */
.post-nav-item.prev:hover{
  border-color: rgba(25,118,210,.45);
  box-shadow: 0 14px 32px rgba(25,118,210,.28), 0 6px 14px rgba(0,0,0,.12);
}
.post-nav-item.next:hover{
  border-color: rgba(211,47,47,.45);
  box-shadow: 0 14px 32px rgba(211,47,47,.28), 0 6px 14px rgba(0,0,0,.12);
}

@media (max-width: 768px){
  .post-nav{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .post-nav-item img{ height: 200px; }
}
/* Okuma genişliği sadece metinde */
.single-text{
  max-width: 820px;
}

/* Metin alanı ortalı dursun */
.single-text{
  margin-left: 0;
  margin-right: auto;
}
/* Content + Sidebar editoryal ayırıcı */
.single-content{
  border-right: 1px solid #e9e9e9;
  padding-right: 24px;
}

@media (max-width:1024px){
  .single-content{
    border-right: none;
    padding-right: 0;
  }
}
/* =========================
   SINGLE TOP BANNER
========================= */

.single-banner-top{
    margin: 24px 0 10px;
}

.single-banner-top img{
    width:100%;
    height:auto;
    display:block;
    border-radius:16px;
    box-shadow:0 10px 26px rgba(0,0,0,.12);
    transition:transform .25s ease, box-shadow .25s ease;
}

.single-banner-top a:hover img{
    transform:translateY(-2px);
    box-shadow:0 14px 34px rgba(0,0,0,.18);
}
/* =========================
   SINGLE CONTENT BANNERS
========================= */

.single-banner-top,
.single-text .me-banner-slot{
    margin:26px 0;
}

.single-banner-top img,
.single-text .me-banner-slot img{
    width:100%;
    height:auto;
    display:block;
    border-radius:16px;
    box-shadow:0 10px 26px rgba(0,0,0,.12);
    transition:transform .25s ease, box-shadow .25s ease;
}

.single-text .me-banner-slot a:hover img,
.single-banner-top a:hover img{
    transform:translateY(-2px);
    box-shadow:0 14px 34px rgba(0,0,0,.18);
}