/* Blogs Section */
.blogs-section {
  padding: 80px 0;
  background: #F8FBFF;
}

.night-mode .blogs-section {
  background: transparent;
}

.blog-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(65, 143, 222, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.night-mode .blog-card-modern {
  background: rgba(44, 62, 80, 0.6);
  border-color: rgba(65, 143, 222, 0.3);
}

.blog-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(65, 143, 222, 0.15);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-modern:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-gold);
  color: var(--charcoal-black);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.blog-date .day {
  font-size: 1.5rem;
  line-height: 1;
}

.blog-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.blog-type {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-blue);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 24px;
}

.blog-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content h5 a {
  color: var(--charcoal-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h5 a:hover {
  color: var(--primary-blue);
}

.night-mode .blog-content h5 a {
  color: white;
}

.blog-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.night-mode .blog-content p {
  color: rgba(255, 255, 255, 0.8);
}

.blog-content .read-more {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.blog-content .read-more:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.blog-content .read-more i {
  font-size: 0.875rem;
  margin-left: 4px;
}
