/* === Blog Detail Page Styles === */

.blog-detail-wrapper {
  padding: 40px 20px;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #b45c27;
  text-decoration: none;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blog-content {
  flex: 1 1 70%;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.blog-meta .separator {
  margin: 0 6px;
}

.blog-thumbnail img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}





.sidebar {
  flex: 1 1 25%;
}

.widget {
  background: #fefaf7;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.widget h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #b45c27;
  border-left: 4px solid #b45c27;
  padding-left: 8px;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: 8px;
}

.widget ul li a {
  color: #444;
  text-decoration: none;
  transition: 0.2s;
}

.widget ul li a:hover,
.widget ul li.active a {
  color: #b45c27;
  font-weight: bold;
}
