/* Overall Container */
.synced-carousel-widget {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}


.sc-controls {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 53%;
    justify-content: space-between;
    margin-left: auto;
    border-bottom: solid 1px white;
    padding-bottom: 15px;;
}


/* Titles Navigation */
.sc-titles-wrapper {
    font-family: Inter, Sans-serif;
    display: flex;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF80;
}
.sc-navigation-arrows {
    display: flex;
    gap:10px;
}

.sc-swiper-button-prev, .sc-swiper-button-next {
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    border:solid 1px #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}


.sc-title-item {
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
;
}

.sc-title-item.active {
    color: #fff;
}

.sc-title-item:not(:first-of-type)::before{
    display: block;
    content: '';
    height: 4px;
    width: 4px;
    background-color: #FFFFFF80;
    border-radius: 50%;
}
/* Slide Layout */
.sc-slide-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sc-media-column {
    flex: 0 0 40%;
    position: relative;
}


.sc-slide-heading {
    font-family: DM Sans, sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #FFFFFF;
}
.sc-slide-description {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 13px;
}

.sc-slide-button {
    display: flex !important;
    justify-content: center;
    width: 204px;
    border-radius: 58px;
    padding: 16px 24px;
    background-color: #029BD6;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 22px;
}

.sc-video-thumb {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.sc-video-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px; /* optional */
}

.sc-video-thumb .sc-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  border: 4px solid white;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  pointer-events: none; /* so click goes through to <a> */
}


@media screen and (max-width: 1024px) {
    .sc-content-column {
        display: contents;
    }
    .sc-slide-button {
        order: 4;
        width: 100%;
    }
    .sc-slide-inner {
        flex-direction: column;
        gap: 16px;
    }
    .sc-media-column {
        flex: 0 0 100%;
        order: 2;
    }
    .sc-slide-heading {
        margin-bottom: 0px;
        font-size: 20px;
        max-width: 100%;
        order: 1;
    }
    .sc-slide-description {
        font-size: 16px;
        max-width: 100%;
        order: 3;
    }
    .sc-controls {
        max-width: 100%;
        padding-bottom: 10px;
    }
    .sc-titles-wrapper {
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
    }
}