#employee-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 40px 0;
}

.employee-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
}
.employee-card.yellow {
    background-color: #ffd966;
}
.employee-card.orange {
    background-color: #ffb98b;
}
.employee-card.white {
    background-color: white;
}
.employee-card.blue {
    background-color: #98beff;
}
.employee-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.employee-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
}
.employee-card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #d9d9d9;
    flex-shrink: 0;
}
.employee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.employee-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #2d2d2d;
}
.employee-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.employee-card-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.employee-card-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #2d2d2d;
}
.employee-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #2d2d2d;
}
.employee-card-quote {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    line-height: 21px;
    color: #2d2d2d;
}
