/* Styles for the carousel */
.our-people-carousel {
    width: 100%;
    /* max-width: 1000px; */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.our-people-cards-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0%;
}

.our-people-card {
    flex: 0 0 auto;
    transition: flex 0.5s ease;
    /* background-color: #fff; */
    /* border: 1px solid #ddd; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* padding: 5px; */
    /* padding-top: 10px;
    padding-bottom: 10px; */
    text-align: center;
    /* border-radius: 20px;
    overflow: hidden; */
    background: transparent;
}

.our-people-card-background{
    width:200px;
    height:300px;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
}

.our-people-card-image img {
    width:180px;
    height:auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    border-radius: 20px;
}

.our-people-card-title {
    font-size: 1.2em;
    margin: 5px 0;
    color: #333;
    text-align: left;
    padding-left: 15px;
}

.our-people-card-excerpt {
    font-size: 0.7em;
    color: #555;
    text-align: left;
    padding-left: 15px;

}

