/* Blog layout specifics on top of style.css */
body {
  background-color: var(--bg-primary);
}

.blog-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(rgba(0, 23, 6, 0.5), rgba(0, 23, 6, 0.95)), url('../assets/86b5816ba98857f13770b1693db6c3bb82958a38ec6c7033846da9482ea88391.avif') no-repeat center center/cover;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.blog-meta-info {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.blog-meta-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.blog-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.blog-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.2rem;
  color: var(--text-main);
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-content li {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  line-height: 1.7;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1.2rem 1.8rem;
  background: rgba(0, 176, 144, 0.08);
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
}

.blog-content blockquote p {
  margin-bottom: 0;
  color: var(--text-main);
  font-weight: 500;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.sidebar-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.6rem;
  color: var(--text-main);
}

.recent-posts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.recent-post-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

.recent-post-item a:hover {
  color: var(--primary);
}

/* Sidebar Tour Card Style */
.sidebar-tour-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sidebar-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.tour-img-wrapper {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.tour-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.sidebar-tour-card:hover .tour-img-wrapper img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #001706;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tour-badge.bestseller {
  background: var(--primary);
}

.tour-badge.popular {
  background: var(--secondary);
  color: #ffffff;
}

.tour-card-body {
  padding: 16px;
}

.tour-card-title {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.35;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.tour-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.tour-card-price {
  color: var(--text-muted);
}

.tour-card-price .price-val {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
}

.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card-rating .stars {
  color: #fbbf24;
  font-weight: bold;
}

.tour-card-rating .reviews-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.tour-card-btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #001706;
  text-align: center;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.tour-card-btn:hover {
  background: var(--secondary);
  color: #ffffff;
}

@media (max-width: 968px) {
  .blog-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
