/* === Blog List Page Styles === */

.blog-list-wrapper {
  padding: 40px 20px;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blog-cards {
  flex: 1 1 70%;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.thumbnail img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.info {
  padding: 16px;
}

.meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.separator {
  margin: 0 6px;
  color: #aaa;
}

.title a {
  font-size: 18px;
  font-weight: 600;
  color: #b45c27;
  text-decoration: none;
}

.title a:hover {
  text-decoration: underline;
}

.excerpt {
  margin: 10px 0;
  color: #444;
  font-size: 15px;
}

.actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}

.btn-outline {
  border: 1px solid #b45c27;
  color: #b45c27;
  background: #fff;
}

.btn-outline:hover {
  background: #b45c27;
  color: #fff;
}

.btn-edit {
  background: #007bff;
  color: white;
}

.btn-delete {
  background: #dc3545;
  color: white;
  border: none;
}

.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;
}

.no-blog {
  color: #888;
  font-style: italic;
}
