.teams-container{
    width: 100%;
    text-align: center;
    color: #191919;
    margin: 100px 0 34px;
}
.teams-container h2{
    font-family: Archivo;
    font-weight: 600;
    font-size: 48px;
    line-height: normal;
    letter-spacing: 0;
    margin: 0 100px 12px;
}
.teams-container-p{
    font-family: Archivo;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0;
    margin: 0;
}
.teams-container-panelist{
    font-family: Archivo;
    font-weight: 700;
    font-size: 42px;
    line-height: normal;
    letter-spacing: 0;
    margin: 4px 0 20px 0;
}
.team-details{
    display: flex;
    gap: 50px;
    width: max-content;
    margin: 0 auto;
}
.team-layout{
    width: min-content;
}
.team-image{
    width: 250px;
    height: 250px;
    border-radius: 200px;
    overflow: hidden;
}
.team-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}
.team-info{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.team-info h3{
    font-family: Archivo;
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0;
    margin: 0 20px;
    padding-top: 20px;
}
.team-info p{
    font-family: Archivo;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 0;
    margin: 0 20px;
    padding-bottom: 20px;
}

/* Shared styles for both mobile and tablet */
@media (max-width: 1024px) {
    .teams-container {
        margin: 30px 0 0;
    }
    .teams-container h2{
        font-size: 36px;
		line-height:1.2;
        margin: 0 27px;
    }
    .teams-container-p{
        line-height: 1.2;
        font-size: 15px;
        margin: 15px 27px 0 27px;
    }
    .teams-container-panelist{
        font-size: 35px;
        margin: 18px 0;
    }
    .team-details{
        flex-direction: column;
		align-items: center;
    }
    .team-info{
        text-align: center;
    }
}