.hr-span-title-name {
    font-family: "Reddit Sans", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    position: relative; /* potrzebne dla ::after */
    display: inline-block; /* żeby ::after działał poprawnie */
    height: 70px !important;
    text-align: center;
    margin-top: 20px;
}

.employee-card .hr-span-title-name {
    height: 100px !important;
}

.hr-span-title-name::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    height: 3px;
    background-color: #007AC0;
    width: 80px;
}

.employee-card .hr-span-title-name::after {
    bottom: 26px;
}

.hr-employee-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 5px solid #E5194A !important;
    border-radius: 200px !important;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
  
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}
  
.employee-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0.7rem;
    text-align: center;
    justify-content: center;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 1rem;
}
  
.carousel-btn {
/*     background: rgba(255, 255, 255, 0.5); */
    color: black;
    border: none;
    padding: 1rem;
    font-size: 120px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .employee-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
}
  
@media (min-width: 992px) {
    .employee-card {
        flex: 0 0 calc(33.3333% - 0.6667rem);
    }
}

@media only screen and (max-width: 600px) {
    .hr-employee-photo {
        width: 300px;
        height: 300px;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }

    .carousel-wrapper {
        position: relative;
        left: 0px;
        min-width: 410px;
    }

    .carousel-container {
        min-width: 260px;
    }

    .hr-span-title-name {
        height: 86px !important;
        margin-top: 20px;
    }

    .hr-span-title-name::after {
        bottom: 26px;
    }
}

.custom-text-center {
    text-align: center;
}

.custom-empty-photo-position {
    transform: translateX(50%);
}

.me-3 {
    margin-right: 0 !important;
}

.hr-custom-text-muted {
    font-family: "Reddit Sans", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #4E4E4E;
}
