/* Workshop and Exhibitions Grid Styles */
/* These styles are extracted from inline <style scoped> blocks and use unique .ykw- prefixes to avoid conflicts with other page sections. */

.ykw-title {
  text-align: center;
  margin-bottom: 40px;
}

.ykw-title h2 {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 900;
  color: #064983;
  letter-spacing: -0.5px;
}

.ykw-line {
  width: 60px;
  height: 5px;
  background: #dc2626;
  margin: 16px auto 0;
  border-radius: 3px;
}

.ykw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 20px;
  justify-content: center;
}

.ykw-card {
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all .4s ease;
}

.ykw-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
}

.ykw-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.ykw-card:hover img {
  transform: scale(1.15);
}

@media (min-width: 768px) {
  .ykw-title h2 {
    font-size: 3.8rem;
  }
  
  .ykw-line {
    width: 90px;
    height: 6px;
  }
  
  .ykw-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  
  .ykw-card {
    aspect-ratio: 4.1 / 3;
  }
}