/* Blog alt meta bilgisi (yazar, tarih, kategori, etiketler) */

/* Post Detail Hero (görselsiz) */
.post-detail-hero {
  padding: 3.2rem 1rem 2.2rem 1rem;
  text-align: center;
  background: #f9f9f9;
}

.post-detail-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.post-detail-hero-title {
  margin: 0;
  font-size: 2.35rem;
  font-weight: 700;
  color: #2b2a2a;
  letter-spacing: 0.5px;
}

.post-detail-breadcrumb {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: #777;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.post-detail-breadcrumb a {
  color: #2b2a2a;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 180, 0, 0);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.post-detail-breadcrumb a:hover {
  color: #ffb400;
  border-color: rgba(255, 180, 0, 0.45);
}

.post-detail-breadcrumb .sep {
  opacity: 0.55;
}

.post-detail-breadcrumb .current {
  color: #777;
  max-width: min(720px, 92vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .post-detail-hero {
    padding: 2.7rem 1rem 1.8rem 1rem;
  }
  .post-detail-hero-title {
    font-size: 1.9rem;
  }
}

/* Sidebar Back Button (Fixed Position - Top Right) */
.sidebar-back-btn-wrapper {
  position: relative;
}

.sidebar-back-btn {
  position: fixed;
  z-index: 9999;
  right: 25px;
  top: 25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  background-color: #2b2a2a;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transform: translateX(0);
  animation: slideInFromRight 0.6s ease-out;
  transition: background-color 0.3s ease, width 0.5s ease;
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.sidebar-back-btn .btn-icon {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.sidebar-back-btn .btn-text {
  display: flex;
  opacity: 0;
  position: absolute;
  right: 0;
  height: 50px;
  width: 25px;
  background-color: #ffb400;
  border-radius: 4rem;
  color: rgb(255, 255, 255);
  padding-right: 25px;
  z-index: -1;
  font-size: 1rem;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  transition: width 0.5s ease, opacity 0.5s ease;
  white-space: nowrap;
}

.sidebar-back-btn:hover {
  background-color: #ffb400 !important;
  z-index: 10000;
}

.sidebar-back-btn:hover .btn-text {
  opacity: 1;
  width: 200px;
}

/* Responsive */
@media (max-width: 991px) {
  .sidebar-back-btn {
    right: 20px;
    top: 20px;
    height: 45px;
    width: 45px;
  }

  .sidebar-back-btn .btn-icon {
    font-size: 1.3rem;
  }

  .sidebar-back-btn .btn-text {
    height: 45px;
    font-size: 0.95rem;
  }

  .sidebar-back-btn:hover .btn-text {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .sidebar-back-btn {
    right: 15px;
    top: 15px;
    height: 40px;
    width: 40px;
  }

  .sidebar-back-btn .btn-icon {
    font-size: 1.2rem;
  }

  .sidebar-back-btn .btn-text {
    height: 40px;
    font-size: 0.9rem;
    width: 20px;
    padding-right: 20px;
  }

  .sidebar-back-btn:hover .btn-text {
    width: 150px;
  }
}

.blog-meta-minimal.blog-meta-bottom {
  padding: 0.75em 0 0.5em 0;
  border-bottom: 1px solid #eee;
  color: #888;
  font-size: 0.97em;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 1em;
  align-items: center;
  justify-content: flex-start;
}
.blog-meta-minimal.blog-meta-bottom i {
  font-size: 0.95em;
  margin-right: 0.3em;
  color: #bbb;
}
.blog-meta-minimal.blog-meta-bottom .blog-tag {
  background: #f4f4f4;
  color: #888;
  border-radius: 2em;
  font-size: 0.93em;
  padding: 0.1em 0.8em;
  margin-left: 0.3em;
  margin-right: 0.1em;
  display: inline-block;
}
.blog-meta-minimal.blog-meta-bottom .blog-meta-tags {
  display: flex;
  align-items: center;
  gap: 0.1em;
}
.blog-meta-minimal.blog-meta-bottom .blog-meta-author,
.blog-meta-minimal.blog-meta-bottom .blog-meta-date,
.blog-meta-minimal.blog-meta-bottom .blog-meta-category {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
/* Yukarı Çık Butonu */
#scrollToTopBtn {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
  color: #232946;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
  cursor: pointer;
  outline: none;
  transform: translateY(40px);
}
#scrollToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scrollToTopBtn:hover {
  background: linear-gradient(135deg, #ffcc33 0%, #ffb347 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 204, 51, 0.18);
  transform: scale(1.08);
}
/* Blog Detail Sayfası Genel */
#blog-detail {
  background: #fff;
  min-height: 100vh;
  background-image: url(../img/pattern.webp);
  background-repeat: repeat;
  background-size: auto;
  text-align: unset;
}

/* İçerik Hazır Değil Modalı */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.3s ease-out forwards;
  backdrop-filter: blur(5px);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  font-size: 1.2rem;
  color: #666;
}

.modal-close:hover {
  background: #ff5252;
  color: #fff;
  transform: rotate(90deg);
}

.not-ready-modal {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 500px;
}

/* İçerik Hazır Değil Mesajı (Eski stil - artık kullanılmıyor) */
.content-not-ready {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.not-ready-icon {
  font-size: 4rem;
  color: #ffb347;
  margin-bottom: 1.5rem;
  animation: writeAnimation 2s ease-in-out infinite;
}

@keyframes writeAnimation {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.content-not-ready h2 {
  font-size: 2rem;
  color: #232946;
  margin-bottom: 1rem;
}

.content-not-ready p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.not-ready-subtitle {
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
}

.back-link-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #232946;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
  font-weight: 500;
}

.back-link-btn:hover {
  background: #0066ff;
  transform: translateY(-2px);
}

#works-detail {
  background: #c53d3d;
  min-height: 100vh;
}

#projects-detail {
  background: #fff;
  min-height: 100vh;
}


/* --- Groovy Paylaşım Menüsü: Tüm butonlar sola açılır --- */

.share-fab-group {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.share-fab-main {
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #232946;
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(35, 41, 70, 0.1);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  outline: none;
}
.share-fab-main:hover,
.fab-open .share-fab-main {
  background: #0066ff;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 102, 255, 0.13);
  transform: scale(1.08);
}
.share-fab-actions {
  position: absolute;
  right: 100%;
  top: 50%;
  display: flex;
  flex-direction: row;
  gap: 0.18rem;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.92);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  background: none;
}
.fab-toggle:checked ~ .share-fab-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.share-fab {
  background: #f4f6fb;
  color: #232946;
  font-size: 1.15rem;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.5px 6px rgba(35, 41, 70, 0.07);
  transition: background 0.16s, color 0.16s, transform 0.16s, box-shadow 0.16s;
  cursor: pointer;
  outline: none;
}
.share-fab.facebook {
  color: #1877f3;
}
.share-fab.x {
  color: #111;
}
.share-fab.linkedin {
  color: #0077b5;
}
.share-fab.copy {
  color: #ffb347;
}
.share-fab:hover {
  background: #0066ff;
  color: #fff !important;
  transform: scale(1.11);
  box-shadow: 0 2px 10px rgba(0, 102, 255, 0.13);
}
.share-fab.copy.copied {
  background: #4caf50 !important;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.18);
}
@media (max-width: 600px) {
  .share-fab-actions {
    gap: 0.09rem;
  }
  .share-fab-main {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .share-fab {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  /* Blog meta bilgileri mobilde taşmaması için */
  .blog-meta-minimal.blog-meta-bottom {
    gap: 0.8em 0.6em;
    font-size: 0.85em;
    padding: 0.6em 0 0.4em 0;
  }

  .blog-meta-minimal.blog-meta-bottom .blog-tag {
    font-size: 0.88em;
    padding: 0.08em 0.65em;
    margin-left: 0.2em;
    margin-right: 0.05em;
  }

  .blog-meta-minimal.blog-meta-bottom .blog-meta-tags {
    flex-wrap: wrap;
    width: 100%;
  }

  /* Blog post container mobilde daha geniş */
}
/* ========== Blog Template Styling (from color_version/blog.html) ========== */

.post-detail-layout {
  background: #f9f9f9;
  padding: 30px 0;
}

.post-detail-layout .container {
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.post-detail-layout .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  width: 100%;
}

.post-detail-layout .post-detail-main-col {
  flex: 1 1 0;
  padding: 0 15px;
  box-sizing: border-box;
  min-width: 0;
}

.post-detail-layout .post-detail-sidebar-col {
  flex: 0 0 30%;
  padding: 0 15px;
  box-sizing: border-box;
}

.post-detail-layout .post-detail-form-col-full {
  flex: 0 0 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.post-detail-layout .post-detail-form-col-half {
  flex: 0 0 50%;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Blog Content */
.post-detail-main .post-detail-article {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  margin-bottom: 30px;
}

.post-detail-article .post-detail-media {
  height: 400px; /* Sabit yükseklik */
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: height 0.4s ease;
}

.post-detail-article .post-detail-media.expanded {
  height: auto; /* Tıklanınca tam yükseklik */
}

.post-detail-article .post-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli container'a sığdır ve kes */
  object-position: center; /* Varsayılan: orta - 'top' veya 'bottom' da olabilir */
  transition: transform 0.7s ease, object-fit 0.4s ease, height 0.4s ease;
}

.post-detail-article .post-detail-media.expanded img {
  height: auto;
  object-fit: contain; /* Tam görseli göster */
}

.post-detail-article:hover .post-detail-media:not(.expanded) img {
  transform: scale(1.05);
}

.post-detail-article .post-detail-content {
  padding: 30px 30px 20px 30px;
}

.post-detail-title {
  position: relative;
  font-size: 22px;
  color: #556d91; /* widget title ile aynı renk */
  margin: 0 0 10px 0;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 10px;
  line-height: 1.2;
}

.post-detail-title:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  background: rgb(255, 196, 85);
  width: 50px;
  left: 0;
}

/* Özet (description) stili - temaya uyumlu */
.post-detail-summary {
  color: #777; /* site içeriği ile uyumlu nötr renk */
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Başlık/özet/görsel kapsayıcısı için istenen padding */
.post-detail-header {
  padding: 30px 30px 20px 30px;
}

.post-detail-meta {
  padding-top: 15px;
}

.post-detail-meta ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  justify-content: flex-end;
  margin-right: 20px;
}

.post-detail-meta ul li {
  position: relative;
}

.post-detail-meta ul li:not(:last-child):after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: #ddd;
  width: 1px;
  height: 15px;
}

.post-detail-meta ul li a {
  color: #222;
  text-transform: capitalize;
  transition: color 0.3s;
  text-decoration: none;
  font-size: 14px;
}

.post-detail-meta ul li a:hover {
  color: #ffb400;
}

.post-detail-meta ul li a i {
  padding-right: 5px;
  color: #ffb400;
}

.blog-content-body p {
  margin-bottom: 15px;
  color: #777;
  line-height: 1.7;
}

.blog-content-body blockquote {
  background: #f7faff;
  padding: 30px 15px 30px 60px;
  font-size: 18px;
  position: relative;
  color: #556d91;
  margin: 15px 0;
  border-left: 4px solid #00c8da;
}

.post-detail-share {
  display: flex;
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 20px;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-detail-share .post-detail-meta {
  flex: 1;
  min-width: 200px;
  padding-top: 0;
}

.post-detail-share .post-detail-meta ul {
  justify-content: flex-start;
  margin-right: 0;
}

.post-detail-share .post-detail-tags {
  flex: 1;
  min-width: 200px;
}

.post-detail-share .post-detail-tags a {
  color: #222;
  text-transform: capitalize;
  transition: color 0.3s;
  text-decoration: none;
}

.post-detail-share .post-detail-tags a:hover {
  color: #556d91;
}

.post-detail-share .post-detail-tags a i {
  padding-right: 5px;
  color: #ffb400;
}

.post-detail-share .post-detail-share-actions {
  text-align: right;
}

.post-detail-share .post-detail-share-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.post-detail-share .post-detail-share-list li {
  display: inline-block;
}

.post-detail-share-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s;
  font-size: 20px;
  color: #666;
  text-decoration: none;
}

.post-detail-share-link span {
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}

.post-detail-share-link span.second_icon {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translate3d(0, 0, 0) translateX(-30px);
  right: 0;
  left: 0;
  margin: auto;
}

.post-detail-share-link:hover span.first_icon {
  transform: translateX(25px);
}

.post-detail-share-link:hover span.second_icon {
  transform: translateX(0px);
}

.post-detail-share-list li a .nav_fb {
  color: #3b5999;
}

.post-detail-share-list li a .nav_in {
  color: #0077b5;
}

.post-detail-share-list li a .nav_whats {
  color: #25d366;
}

.post-detail-share-list li a .nav_twit {
  color: #55acee;
}

.post-detail-share-list li a .nav_insta {
  color: #e4405f;
}

/* Comments Section */
.widget {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  background: #ffffff;
}

.post-detail-section-title {
  margin-bottom: 20px;
}

.widget_title {
  position: relative;
  margin: 0 0 30px 0;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-size: 22px;
  color: #556d91;
  font-weight: 700;
}

.widget_title:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  background: rgb(255, 196, 85);
  width: 50px;
  left: 0;
}

.post-detail-comments ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest_comment {
  margin-top: 20px;
  position: relative;
  padding-bottom: 20px;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #eee;
}

.latest_comment:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comment_thumb {
  flex-shrink: 0;
  width: 80px;
}

.comment_thumb img {
  width: 100%;
  border-radius: 50%;
}

.comment_data {
  flex: 1;
}

.client_name h5 {
  font-size: 18px;
  color: #556d91;
  text-transform: capitalize;
  margin: 0 0 5px 0;
}

.client_name span {
  letter-spacing: 2px;
  color: #ffb400;
  margin: 5px 0;
  display: block;
  text-transform: capitalize;
  font-size: 13px;
}

.comment_data p {
  margin: 10px 0;
  color: #777;
}

.post-detail-tag-link {
  display: inline-block;
  border-radius: 51px;
  border: 2px solid #7b7b7b36;
  margin: 10px 0 0 0;
  height: 35px;
  line-height: 35px;
  min-width: 100px;
  text-align: center;
  color: #777;
  transition: all 0.3s;
  text-decoration: none;
  padding: 0 15px;
  font-size: 14px;
}

.post-detail-tag-link:hover {
  background: #ffb400;
  border-color: #ffb400;
  color: #ffffff;
}

.post-detail-tag-link i {
  font-size: 12px;
  margin-right: 5px;
}

/* Comment Form */
.port_contact_form .form-group {
  margin-bottom: 20px;
}

.port_contact_form .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #c7cdd3;
  border-radius: 0;
  padding: 0 0 15px 0;
  width: 100%;
  font-size: 15px;
  color: #222;
  transition: border-color 0.3s;
}

.port_contact_form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #ffb400;
}

.port_contact_form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.banner_btn {
  text-align: left;
}

.portfolio_btn {
  position: relative;
  display: inline-block;
  outline: none;
  overflow: hidden;
  min-width: 200px;
  max-width: 100%;
  height: 60px;
  background: rgb(252, 194, 85);
  border-radius: 30px;
  text-align: center;
  line-height: 60px;
  transition: all 1s;
  font-size: 16px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0 30px;
  box-sizing: border-box;
}

.portfolio_btn span {
  position: relative;
  display: inline-block;
  transition: all 0.8s;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}

.portfolio_btn span.second_text {
  position: absolute;
  top: 100%;
  transform: translate3d(0, 0, 0);
  left: 0;
  right: 0;
  background-color: #57c57d;
  margin: auto;
  color: #fff;
}

.portfolio_btn:hover span.first_text {
  transform: translateY(-100%);
}

.portfolio_btn:hover span.second_text {
  top: 0%;
}

.portfolio_btn:hover {
  background: #ffb400;
  color: #ffffff;
}

.portfolio_btn.btn_red {
  background-color: #ffb400;
  box-shadow: 0px 8px 20px 0px rgba(255, 81, 126, 0.3);
  color: #fff;
}

.portfolio_btn.btn_red:hover {
  background: #fcc255;
  box-shadow: 0px 8px 20px 0px rgba(255, 196, 85, 0.3);
}

/* Sidebar */
.post-detail-sidebar .widget {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  background: #ffffff;
}

.post-detail-sidebar .widget.search_widget form {
  position: relative;
}

.post-detail-sidebar .widget.search_widget .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #c7cdd3;
  border-radius: 0;
  padding: 0 30px 15px 0;
  width: 100%;
}

.post-detail-sidebar .widget.search_widget .blog_searchicon {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffb400;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
}

/* Author Widget */
.post-detail-widget-author .post-detail-author {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.post-detail-widget-author .post-detail-author-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
}

.post-detail-widget-author .post-detail-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-detail-widget-author .post-detail-author-name {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.post-detail-widget-author .post-detail-author-bio {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

.widget .post-detail-recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget .post-detail-recent-posts ul li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.widget .post-detail-recent-posts ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget .post-detail-recent-posts .post-detail-recent-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 4px;
}

.widget .post-detail-recent-posts .post-detail-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget .post-detail-recent-posts .post-detail-recent-data {
  flex: 1;
}

.widget .post-detail-recent-posts .post-detail-recent-title {
  color: #222;
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
  transition: color 0.3s;
  text-decoration: none;
  line-height: 1.4;
}

.widget .post-detail-recent-posts .post-detail-recent-title:hover {
  color: #556d91;
}

.widget .post-detail-recent-posts .post-detail-recent-date {
  color: #556d91;
  text-transform: capitalize;
  font-size: 13px;
  text-decoration: none;
}

.widget.categroies_widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget.categroies_widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.widget.categroies_widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget.categroies_widget ul li a {
  color: #777;
  transition: color 0.3s;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.widget.categroies_widget ul li a:hover {
  color: #ffb400;
}

.widget.categroies_widget .category_num {
  color: #999;
}

.widget.post-detail-widget-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.widget.post-detail-widget-tags ul li {
  display: inline-block;
}

.widget.post-detail-widget-tags .post-detail-tag-link {
  min-width: auto;
  padding: 0 15px;
  margin: 0;
  height: 35px;
  line-height: 31px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .post-detail-layout .post-detail-main-col,
  .post-detail-layout .post-detail-sidebar-col {
    flex: 0 0 100%;
  }

  .post-detail-sidebar {
    margin-top: 30px;
  }

  .post-detail-layout {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .post-detail-layout .post-detail-form-col-half {
    flex: 0 0 100%;
  }

  .post-detail-article .post-detail-media {
    height: 250px; /* Mobilde daha küçük yükseklik */
  }

  .post-detail-article .post-detail-content {
    padding: 20px;
  }

  .widget {
    padding: 20px;
  }

  .post-detail-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-detail-share .post-detail-share-actions {
    text-align: left;
    width: 100%;
  }

  .post-detail-share .post-detail-share-list {
    justify-content: flex-start;
  }

  .portfolio_btn {
    min-width: 180px;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
  }

  .post-detail-title {
    font-size: 20px;
  }
}
