/* Blog Page Styles */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  margin-top: 5rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-header h1 {
  font-size: 3.2rem; /* Increased from 2.5rem */
  color: #bd2227; /* Changed to match site's red color scheme */
  margin-bottom: 0.8rem; /* Increased spacing */
  font-weight: 700; /* Make it bolder */
}

.blog-header p {
  font-size: 1.4rem; /* Increased from 1.1rem */
  color: #555;
  max-width: 800px; /* Increased from 700px */
  margin: 0 auto;
  line-height: 1.5; /* Improved line spacing */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image-container {
  position: relative;
  height: 200px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tags {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
}

.tag {
  background-color: rgba(224, 92, 65, 0.8);
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
  line-height: 1.3;
}

.blog-excerpt {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: #e05c41;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #c04a32;
}

.read-more span {
  margin-left: 4px;
  transition: transform 0.3s;
}

.read-more:hover span {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .blog-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    max-width: 100%;
  }
}


.blog-container {
    margin-top: 30px;
    padding: 20px;
    /* background-color: #f7f7f7; */
    /* border: 1px solid #ddd; */
    border-radius: 4px;
}

.blog-container h2 {
    /* font-family: 'Georgia', serif; */
    font-size: 2rem;
    text-transform: uppercase;
    color: #4A90E2;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
}

.blog-container h3 {
    /* font-family: 'Georgia', serif; */
    font-size: 2rem;
    /* text-transform: uppercase; */
    color: #4A90E2;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
}

.blog-container h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #4A90E2, #50E3C2);
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}

.blog-container ul {
    list-style: none;
    padding: 0;
}

.blog-container ul li {
    margin-bottom: 10px;
}

.blog-container ul li a {
    text-decoration: none;
    color: #007acc;
    transition: color 0.3s;
}

.blog-container ul li a:hover {
    color: #005b99;
}