/* BOLO - Featured Content Section */

.featured-section {
  padding: 80px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.featured-section-title {
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.featured-section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.featured-section-title p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.featured-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.05);
}

.featured-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-card-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.featured-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--secondary);
  transition: color 0.3s ease;
}

.featured-card:hover .featured-card-title {
  color: var(--primary);
}

.featured-card-excerpt {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.featured-card-meta {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

.featured-card-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.featured-card-meta-item i {
  font-size: 0.9rem;
  margin-right: 0.4rem;
  color: var(--primary);
}

.featured-section-action {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-section {
    padding: 60px 0;
  }
  
  .featured-section-title h2 {
    font-size: 2rem;
  }
  
  .featured-card-image {
    height: 200px;
  }
}