.speakers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

.speaker-item {
    flex: 0 1 320px;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    max-width: 320px;
    transition: transform 0.3s ease;
}

.speaker-portrait-square {
    width: 290px;
    height: 290px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    outline: black 1px solid;
}

.speaker-portrait-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.speaker-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.speaker-name,
.speaker-description {
    width: 290px;
    max-width: 290px;
}