.gradient-bg {
    background-image: linear-gradient(45deg, #ff6b6b, #ff8e53, #4ecdc4, #6a1b9a);
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
    box-sizing: border-box;
    }

.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) {
        .speaker-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
    }

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

.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;
    lign-items: center;
    text-align: center;
    overflow: hidden;
    padding: 10px;
    transition: transform 0.3s ease;
    margin: 0 auto; 
    }

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

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

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

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

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

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

.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: 20px 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;
}