.commonTitleWrapper {
    background: url("../../images/solutions/emergency/emergencyWrapperBackground.jpg") no-repeat center 0;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commonTitle {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.69);
    color: #f1f8ff;
}

.tabBroadCastReceiverTotalWrapper {
    max-width: 100%;
    height: auto;
}

#auroraFunctions {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: fit-content; /* 콘텐츠에 맞게 높이 조정 */
    overflow: hidden;
}

.tabBroadCastReceiverWrapper {
    list-style: none;
    padding: 0 30px;
    margin: 100px 20px 60px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #ececec;
    height: 100px;
    border-radius: 20px;
    background-color: white;
}

.tabBroadCastReceiverWrapper > li {
    width: 246px;
    height: 48px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -1px;
    background-color: #ececec;
    color: #12212c;
    border-radius: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
}

.tabBroadCastReceiverWrapper > li:hover {
    background-color: #441CAC;
    color: white;
}

.tabBroadCastReceiverWrapper > li.active {
    color: white;
    background-image: linear-gradient(320deg, #581281 0%, #006fff 100%);
}

/* Swiper */

.broadcastReceiverSwiperImg {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 7/5;
}

.auroraSwiperWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

.swiper {
    width: 700px;
    height: auto;
}

.auroraSwiperWrapper .swiper {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.auroraSwiperWrapper .swiper.fade-out {
    opacity: 0;
}


.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next {
    position: relative;
    background: url(../../images/mainBody/client/clientRightArrow.svg) no-repeat center;
}

.swiper-button-prev {
    position: relative;
    background: url(../../images/mainBody/client/clientLeftArrow.svg) no-repeat center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.function-wrapper {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.function-wrapper.active {
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    position: relative;
}


#auroraWrapper {
    opacity: 1;
    transition: opacity 0.3s ease;
}

#auroraWrapper.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}


@media screen and (max-width: 768px) {
    .commonTitle {
        font-size: 36px;
    }

    .tabBroadCastReceiverWrapper {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 10px;
        padding: 20px;
    }

    .tabBroadCastReceiverWrapper > li {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
        height: 48px;
        font-size: 12px;
    }

    td {
        font-size: 14px;
    }

    .aurora100Description {
        font-size: 14px;
    }

    .aurora150Description {

        font-size: 14px;

    }

    .aurora150Configuration {
        font-size: 14px;
    }

    .aurora155Description {
        font-size: 14px;
    }

    .aurora155Configuration {
        font-size: 14px;
    }

    .aurora200Description {
        font-size: 14px;
    }

    .observerUp {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .commonTitle {
        font-size: 30px;
    }

    td {
        font-size: 12px;
    }

    .aurora100Description {
        font-size: 12px;
    }

    .aurora150Description {

        font-size: 12px;

    }

    .aurora150Configuration {
        font-size: 12px;
    }

    .aurora155Description {
        font-size: 12px;
    }

    .aurora155Configuration {
        font-size: 12px;
    }

    .aurora200Description {
        font-size: 12px;
    }

    .observerUp {
        font-size: 12px;
    }
}

