.product-card {
    display: flex !important;
    flex-direction: column;
    padding: 26px;
    text-decoration: none;
    justify-content: space-between;
    gap: 16px;
    border-radius: 16px;
    background-color: var(--grey);
    flex-shrink: 0;
    width: 364px;
    margin-right: 24px;
}

.product-card .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--primary);
}

.product-card .text-wrapper .category {
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 0px;

}

.product-card .img-wrapper {
    max-height: 75%;
    height: 100%;
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-card {
    height: 493px;
    width: 364px;
    border-radius: 20px;
    margin-right: 24px;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
}

.team-card .img-wrapper {
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
} 

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

.team-card .text-wrapper {
    background-color: var(--grey);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: fit-content;
}

.team-card .text-wrapper p {
    margin: 0px;
    line-height: 70%;
}

.team-card .text-wrapper .name {
    color: var(--primary);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}