/* CSS for the row container */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* CSS for Custom Team Item container */
.custom-team-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    /* Adjust the corner radius as desired */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add a subtle box shadow */
    transition: transform 0.3s ease-in-out;
    /* Apply the transition to the whole column */
}

/* CSS for Custom Team Item Image */
.custom-team-item__img {
    width: 100%;
    height: auto;
    display: block;
}

/* CSS for hover effect */
.custom-team-item:hover {
    transform: scale(1.05);
    /* Increase the scale for a zoom-in effect on hover */
}

/* CSS for Custom Team Item Social */
.custom-team-item-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    /* Adjust the background color and opacity as desired */
}

/* CSS for Custom Team Item Social Link */
.custom-team-item-social__link {
    display: block;
    color: #fff;
    /* Adjust the font color as desired */
    text-align: center;
    text-decoration: none;
    font-size: 14px;
}

/* CSS for hover effect on Custom Team Item Social Link */
.custom-team-item-social__link:hover {
    text-decoration: underline;
}

/* CSS for Custom Team Item Details */
.custom-team-item-details {
    padding: 10px;
    background-color: #f2f2f2;
    /* Adjust the background color as desired */
    border-radius: 0 0 10px 10px;
    /* Adjust the corner radius as desired */
}

/* CSS for Custom Team Item Name */
.custom-team-item-details__name {
    font-size: 18px;
    font-weight: bold;
}

/* CSS for Custom Team Item Position */
.custom-team-item-details__position {
    font-size: 14px;
    color: #777;
    /* Adjust the font color as desired */
}
