/* 1. PROFIL SPECJALISTY (Single Page) */
.expert-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 4rem 4rem;
}

.expert-profile__content {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 1750px;
    gap: 2rem;
    padding: 2rem 2rem 5rem;
    background-color: #F7FAFF;
    border: 1.67px solid #E5E5E5;
    border-radius: 33px;
}

.expert-profile__about {
    display: flex;
    gap: 3rem;
}

.expert-profile__photo {
    display: flex;
    flex: 1;
    max-width: 550px;
    max-height: 550px;
}

.expert-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 27px;
    max-width: 550px;
    max-height: 550px;
    object-position: center 6%;
}

.expert-profile__info {
    display: flex;
    flex-direction: column;
    flex: 2.5;
    gap: 1.5rem;
    justify-content: flex-end;
}

.expert-profile__title {
    background-color: #ffffff;
    border-radius: 5rem;
    padding: 0.5rem 0.9rem;
    width: fit-content;
    border: 1.55px solid #E5E5E5;
}

.expert-profile__description {
    max-width: 870px;
}

/* 2. AKORDEONY I ODZNAKI */
.expert-accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem 6rem;
}

.expert-accordion .section-accordion {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 1750px;
    width: 100%;
}

.expert-accordion__link {
    margin-top: 6rem;
}

.spec-badges {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #142B4D;
    font-weight: 400;
}

.spec-badge {
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #203E6B 0%, #1A2B51 100%);
    padding: 12px;
    border-radius: 12px;
}

.spec-badge svg {
    max-width: 55px;
    max-height: 55px;
}

.spec-badge svg path {
    fill: white;
}

/* 3. GALERIA REALIZACJI */
.expert-gallery {
    padding: 6rem 24px 1rem !important;
}

.expert-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.expert-gallery__grid img, .expert-gallery__grid video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.expert-gallery__grid video {
    position: relative;
}

.expert-gallery__play img {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    /* transform: translate(-50%, -50%); */
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

/* 4. GRID I KAFELEK SPECJALISTY (Ujednolicony) */
.experts-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.experts-list__grid--2col {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 900px;
    margin: 0 auto;
}

.experts-list__item {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 1.8rem;
    border-radius: 22px;
    gap: 1rem;
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
    text-decoration: none !important;
}

.experts-list__item:hover {
    transform: translateY(-5px);
}

.experts-list__img-wrapper {
    width: 100%;
    height: 370px;
    border-radius: 17px;
    overflow: hidden;
    background: #f0f0f0;
}

.experts-list__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 7%;
}

.experts-list__plus {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 10;
    width: 32px;
}

.experts-list__content-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.specjalizacje-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
}

.specjalizacja-item {
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
}

.specialist-tile-anchor {
    text-decoration: none;
    display: block;
    height: 100%;
}

.expert-dedicated {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 1.5rem 5rem;
}

.expert-accordion ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.expert-dedicated .trust-slider-static {
    padding: 20px 0px;
    background-color: transparent;
}

.expert-dedicated .trust-slider-static__bottom {
    padding: 0px;
}

.expert-gallery .trust-slider-static__bottom {
    padding: 0px;
    padding-top: 3rem;
}

.experts-list__item--empty {
    visibility: hidden;
}

.expert-profile__badges {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    max-width: 40vw;
    justify-content: flex-end;
}

/* 5. MEDIA QUERIES */
@media (max-width: 1400px) {
    .expert-profile { padding: 1rem 2rem 2rem; }
    .expert-profile__content { padding: 1.5rem 1.5rem 5rem; }
    .expert-accordion { padding: 0 1.5rem 5rem; }

    .expert-dedicated .trust-slider-static  {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .expert-profile__about { flex-direction: column; }
    .expert-profile__photo { width: 50%; max-width: 320px; }
    .expert-accordion .section-accordion__top, 
    .expert-accordion .section-accordion__content-inner {
        padding: 1rem 1rem 1rem 1.5rem !important;
        text-align: start;
    }
}

@media (max-width: 900px) {
    .experts-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .experts-list__img-wrapper {
        height: 180px;
    }
    .expert-profile { padding: 0.9rem 0.9rem 2rem; }
    .expert-profile__content { padding: 1rem 0.9rem 2rem; }
    .expert-dedicated .trust-slider-static__slides {
        min-height: 0px;
    }

    .expert-profile__badges {
        top: 0.9rem;
        right: 0.9rem;
    }

    .expert-gallery {
        padding: 3rem 0.1rem 1rem !important;
    }

    .expert-profile {
        padding-bottom: 0;
    }

    .expert-accordion { padding: 0 0.9rem 5rem; }
}

@media (max-width: 768px) {
    .expert-dedicated .experts-list__grid { grid-template-columns: 1fr; }
    .expert-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .expert-gallery__grid img { height: 180px; }
    .expert-dedicated .trust-slider-static__slides {
        min-height: 0px;
    }

    .expert-profile__photo {
        display: flex;
        flex: 1;
        max-width: 50%;
        max-height: 550px;
    }

    .expert-profile__photo img {
        max-height: 50%;
    }

    .spec-badge {
        width: 57px;
        height: 57px;
        padding: 0.5rem;
    } 

    .spec-badge svg {
        max-width: 40px;
        max-height: 40px;
    }

    .spec-badges {
        gap: 8px;
        font-size: 11px;
    }

    .expert-profile__badges {
        gap: 12px !important;
    }

    .expert-accordion .section-accordion__top h4 {
        font-size: 19px !important;
    }

    .expert-accordion .section-accordion__cross {
        width: 48px;
        height: 48px;
        aspect-ratio: 1;
    }

    .expert-accordion .section-accordion__cross img {
        width: 27px;
        height: 27px;
    }
}

@media (max-width: 480px) {
    .expert-gallery__grid { grid-template-columns: 1fr; }
    .expert-dedicated .trust-slider-static__slides {
        min-height: 0px;
    }

    .expert-profile {
        padding: 0.6rem 0.6rem 1rem;
    }

    .expert-dedicated {
        padding: 0;
    }
}
