.session-focus {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #fffaf3;
}

.session-title {
  font-size: 2.2rem;
  color: #8c6500;
  margin-bottom: 0.5rem;
  font-family: 'Merriweather', serif;
}

.section-logo {
  width: 60px;
  margin: 0.5rem auto 1.2rem;
  opacity: 0.9;
}

.session-subheading {
  color: #7a5c00;
  font-weight: 600;
  margin-bottom: 1rem;
}

.session-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.session-card {
  background-color: #fff9d6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 1.2rem;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.session-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.session-heading {
  font-size: 1.3rem;
  color: #533c00;
  margin: 0.8rem 0 0.3rem;
}

.session-description {
  color: #5f5030;
  font-size: 0.95rem;
  padding: 0 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .session-cards {
    grid-template-columns: 1fr;
  }
}
