.wsj-gradient-bg {
  background: linear-gradient(-45deg, #ff6b6b, #ff8e53, #4ecdc4, #6a1b9a);
  background-size: 400% 400%;
  animation: wsj-gradientShift 15s ease infinite;
  width: 100%;
  min-height: 100vh;
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
  }

  @keyframes wsj-gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

.wsj-session-title {
  font-size: 28px;
  color: white;
  text-align: left;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  }

.wsj-speaker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
  }

  @media (max-width: 1200px) {
    .wsj-speaker-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .wsj-speaker-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    }
  }

.wsj-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 10px;
  transition: transform 0.3s ease;
  margin: 0 auto;
  }

.wsj-card:hover {
    transform: scale(1.05);
  }

.wsj-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  }

.wsj-image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  }

.wsj-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  }

.wsj-card:hover .wsj-overlay {
  opacity: 0;
  }

.wsj-name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 10px 0 5px;
  }

.wsj-title {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.wsj-session-button {
  display: inline-block;
  background-color: #E4007E;
  text-decoration: none;
  color: white;
  padding: 25px 35px;
  border-radius: 999px;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin: 60px 0 0 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.wsj-session-button:hover {
  background-color: #c3006e;
  color: #ffffff;
  transform: scale(1.05);
}

.wsj-session-wrapper {
  text-align: center;
  margin-bottom: 10px;
}