.agb-team {

}

.agb-team .teams {
    gap: 48px 0;
}

.agb-team .team .image {
    width: 100%;
    height: 300px;
    margin: 0 0 12px 0;
}

.agb-team .team .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.agb-team .team .title {
    font-size: 20px;
    margin: 0 0 12px 0;
}

.agb-team .team .role {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.agb-team .team .content {
    margin: 0 0 16px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    color: #6b7280;
}

.agb-team .team .read-more {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0 0 16px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.agb-team .team .read-more span {
    flex: 1 0 0;
}

.agb-team .team .read-more img {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.agb-team .team.expanded .content {
    display: block;
}

.agb-team .team.expanded .read-more img {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .agb-team .team .image {
        height: 420px;
    }
}