/* ── Speakers carousel (new-testimonial style) ── */
.new-speakers {
    position: relative;
    background: #192666;
    overflow: hidden;
}

.new-speakers__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(92, 118, 210, 0.35) 0%, transparent 62%),
        radial-gradient(ellipse 45% 40% at 15% 80%, rgba(206, 137, 36, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 85% 20%, rgba(80, 110, 200, 0.18) 0%, transparent 50%);
}

.new-speakers__head-wrap {
    position: relative;
    z-index: 2;
}

.new-speakers__heading {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 720px;
    margin-inline: auto;
}

.new-speakers__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: #c98a2e;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.new-speakers__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c98a2e;
    flex-shrink: 0;
}

.new-speakers__title {
    color: #ce8924;
}

.new-speakers__intro {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
}

.new-speakers__slider-stage {
    position: relative;
    width: 100%;
    z-index: 1;
}

.new-speakers__edge-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(72px, 11vw, 160px);
    z-index: 4;
    pointer-events: none;
}

.new-speakers__edge-fade--left {
    left: 0;
    background: linear-gradient(
        90deg,
        #192666 0%,
        rgba(25, 38, 102, 0.92) 28%,
        rgba(25, 38, 102, 0.45) 62%,
        transparent 100%
    );
}

.new-speakers__edge-fade--right {
    right: 0;
    background: linear-gradient(
        270deg,
        #192666 0%,
        rgba(25, 38, 102, 0.92) 28%,
        rgba(25, 38, 102, 0.45) 62%,
        transparent 100%
    );
}

.new-speakers__swiper {
    overflow: hidden;
    padding: 0.75rem 0 2rem;
    width: 100%;
}

.new-speakers__swiper .swiper-wrapper {
    align-items: stretch;
}

.new-speakers__slide {
    width: auto;
    height: auto;
    box-sizing: border-box;
    opacity: 0.28;
    transform: scale(0.9);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.new-speakers__slide .new-speakers__card {
    max-width: 340px;
    margin-inline: auto;
}

.new-speakers__slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.new-speakers__slide.swiper-slide-prev,
.new-speakers__slide.swiper-slide-next {
    opacity: 0.55;
    transform: scale(0.95);
}

.new-speakers__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 440px;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, #8da1be 0%, #6f86a8 38%, #4f6489 62%, #3e527a 100%);
    border: 1px solid rgba(196, 210, 238, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -18px 32px -12px rgba(21, 31, 84, 0.55),
        0 16px 36px rgba(8, 14, 48, 0.22);
}

.new-speakers__card-media {
    padding: 22px 22px 0;
}

.new-speakers__card-photo-wrap {
    position: relative;
    margin-bottom: 26px;
}

.new-speakers__card-photo {
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 18px;
    aspect-ratio: 1.05;
    background: #2a3560;
    box-shadow: 0 8px 22px rgba(15, 22, 58, 0.28);
}

.new-speakers__card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.new-speakers__card-photo img.new-speakers__card-photo--placeholder {
    object-fit: contain;
    object-position: center;
    padding: 18%;
    background: #2a3560;
}

.new-speakers__card-author {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    max-width: calc(100% - 16px);
    padding: 9px 18px;
    border-radius: 999px;
    background: #c98a2e;
    color: #fff;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    white-space: nowrap;
    transform: translate(-50%, 50%);
    box-shadow: 0 6px 16px rgba(12, 18, 48, 0.28);
}

.new-speakers__card-name {
    font-weight: 700;
}

.new-speakers__card-role {
    font-weight: 400;
}

.new-speakers__card-role-line {
    margin: 0;
    padding: 14px 22px 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-speakers__card-description {
    flex: 1;
    margin: 0;
    padding: 8px 24px 20px;
    color: #fff;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-speakers__card-footer {
    display: flex;
    justify-content: center;
    padding: 0 24px 24px;
    margin-top: auto;
}

.new-speakers__card-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(12, 18, 48, 0.35);
    color: #fff;
    font-size: 1.05rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.new-speakers__card-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #fff;
    transform: translateY(-2px);
}
