﻿.speaker-list {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 4rem;
}

.speaker-card {
    background: white;
    border: 1px solid #14377d;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: start;
    align-items: start;
}

    .speaker-card h3 {
        margin: 0;
    }

.speaker-text-area {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 2rem;
}

.speaker-image {
    height: auto;
    max-width: 300px;
}

@media (max-width: 600px) {
    .speaker-card {
        flex-wrap: wrap;
    }

    .speaker-image {
        height: 300px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: 50% 25%;
    }

}
