.speakers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

/* Individual speaker card */
.speaker-card {
    width: 200px;  /* Fixed card width */
    height: 320px; /* Fixed card height */
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.speaker-card:hover {
    transform: scale(1.05);
}

/* Image inside the card */
.speaker-card img {
    width: 100%;
    height: 100%; /* Ensures uniform image size */
    object-fit: cover; /* Prevents stretching/distortion */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Speaker name */
.speaker-name {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .speaker-card {
        width: 90%; /* Full width for smaller screens */
        height: auto;
    }

    .speaker-card img {
        height: auto;
    }
}