[data-element-id="243823000000007960"] .ticket-item {
    display: none !important;
}
[data-element-id="243823000000007341"] .li-subtitle.ember-view {
    display: none !important;
}
[data-template="community-speaker-details-card"] .bs-profile-details .pd-details h3 {
    white-space: pre-wrap !important;
}
@media only screen and (max-width: 767px) {
    .sdm-item .usr-name .ellipsis {
        white-space: normal;
    }
}
@media only screen and (max-width: 767px) {
    .bs-timeline.card-view .session-speakers .bs-user-items {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
    }

    .bs-timeline.card-view .session-speakers .bs-user-item {
        min-width: 0;
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .bs-timeline.card-view .session-speakers .bs-user-item > .overflow-hidden {
        min-width: 0;
        width: auto;
        overflow: visible;
    }

    .bs-timeline.card-view .session-speakers .usr-name {
        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
        padding-bottom: 2px;
    }
}

/* =========================================
   Infinite Scrolling Text
   ========================================= */

section[data-section-id="243823000000016291"] .image-layout {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fade on both sides */
section[data-section-id="243823000000016291"] .image-layout::before,
section[data-section-id="243823000000016291"] .image-layout::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 120px;
    height: 100%;
    pointer-events: none;
}

/* Left fade */
section[data-section-id="243823000000016291"] .image-layout::before {
    left: 0;
    background: linear-gradient(
        to right,
        #ffffff,
        transparent
    );
}

/* Right fade */
section[data-section-id="243823000000016291"] .image-layout::after {
    right: 0;
    background: linear-gradient(
        to left,
        #ffffff,
        transparent
    );
}

/* Scrolling content */
section[data-section-id="243823000000016291"] .bs-mtList-wgt {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    max-width: none;
    animation: ticker-scroll 20s linear infinite;
    grid-gap: 0px;
}

/* Pause on hover */
section[data-section-id="243823000000016291"] .image-layout:hover .bs-mtList-wgt {
    animation-play-state: paused;
}

section[data-section-id="243823000000016291"] .li-item {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    gap: 0;
}

section[data-section-id="243823000000016291"] .li-content,
section[data-section-id="243823000000016291"] .li-description {
    width: max-content;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Green separator */
section[data-section-id="243823000000016291"] .li-item::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    margin: 0 28px;
    padding: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #2e9e44;
}

/* Seamless loop */
@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    section[data-section-id="243823000000016291"] .image-layout::before,
    section[data-section-id="243823000000016291"] .image-layout::after {
        width: 60px;
    }

    section[data-section-id="243823000000016291"] .li-item::after {
        margin: 0 16px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    section[data-section-id="243823000000016291"] .bs-mtList-wgt {
        animation: none;
        transform: none;
    }
}

/* =========================================
   Content Cards
   ========================================= */

[data-element-id="243823000000037349"] .li-item {
    position: relative;
    box-sizing: border-box;

    min-height: 80px;
    padding: 10px 24px 10px 56px;

    display: flex;
    align-items: center;

    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    background: rgba(30, 41, 55, 0.33);
}

/* Vertically center the content */
[data-element-id="243823000000037349"] .li-content {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Text container */
[data-element-id="243823000000037349"] .li-description {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Remove default paragraph spacing */
[data-element-id="243823000000037349"] .li-description p {
    margin: 0 !important;
    padding: 0;
    line-height: 1.4 !important;
}

/* Text */
[data-element-id="243823000000037349"] .li-description span {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Green checkmark */
[data-element-id="243823000000037349"] .li-item::before {
    content: "✓";
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #69bc76;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

/* Hover effect */
[data-element-id="243823000000037349"] .li-item {
    transition: border-color 0.25s ease;
}

[data-element-id="243823000000037349"] .li-item:hover {
    border-color: #69bc76;
}

/* =========================================
   Speaker Cards
   ========================================= */

[data-element-id="243823000000016910"] .li-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
    column-gap: 30px;

    box-sizing: border-box;
    padding: 48px;

    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    background: rgba(30, 41, 55, 0.33);

    text-align: left;
}


/* =========================================
   Speaker Image
   ========================================= */

[data-element-id="243823000000016910"] .list-image {
    grid-column: 1;
    grid-row: 1;

    width: 100px;
    height: 100px;
}

[data-element-id="243823000000016910"] .media-element,
[data-element-id="243823000000016910"] .media-image {
    width: 100px !important;
    height: 100px !important;
}

[data-element-id="243823000000016910"] .media-image {
    overflow: hidden;
    border-radius: 50%;
}

[data-element-id="243823000000016910"] .media-image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;
    border-radius: 50%;
}


/* =========================================
   Content
   ========================================= */

[data-element-id="243823000000016910"] .li-content {
    display: contents;
}


/* Speaker name */
[data-element-id="243823000000016910"] .li-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    padding: 0;
    text-align: left;
}

[data-element-id="243823000000016910"] .li-title p {
    margin: 0 !important;
    padding: 0;
    line-height: 1.3 !important;
}

[data-element-id="243823000000016910"] .li-title span {
    color: #ffffff !important;
    /* font-size: 30px;
    font-weight: 400; */
}


/* =========================================
   Speaker Description
   ========================================= */

[data-element-id="243823000000016910"] .li-subtitle {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 36px 0 0;
    padding: 0 0 0 32px;
    border-left: 3px solid #69bc76;
    text-align: left;
}

[data-element-id="243823000000016910"] .li-subtitle p {
    margin: 0 !important;
    padding: 0;
    line-height: 1.7 !important;
}

[data-element-id="243823000000016910"] .li-subtitle span {
    color: #cbd5e1 !important;
    /* font-size: 18px;
    font-weight: 400; */
}


/* =========================================
   Card Hover
   ========================================= */

[data-element-id="243823000000016910"] .li-item {
    transition: border-color 0.25s ease;
}

[data-element-id="243823000000016910"] .li-item:hover {
    border-color: #69bc76;
}

