.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
}

.team-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    transition: aspect-ratio 0.3s ease;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.team-card-featured:hover .team-card-image {
    aspect-ratio: 4 / 3;
}

.team-card-featured:hover .team-card-image::after {
    background: rgba(0, 0, 0, 0.4);
}

.team-card-expand {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.team-card-featured:hover .team-card-expand {
    max-height: 260px;
    opacity: 1;
}
