* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    width: 100%;
}

/* 회사 정보 섹션 */
.CompanyInfo_infoContents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.CompanyInfo_info {
    text-align: center;
}

.CompanyInfo_info h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.CompanyInfo_important {
    font-size: 42px;
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 30px;
}

.CompanyInfo_info p {
    font-size: 17px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.CompanyInfo_infoList {
    margin-top: 60px;
}

.CompanyInfo_listEx {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
}

.CompanyInfo_listEx li {
    flex: 0 0 auto;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    position: relative;
}

.CompanyInfo_listEx li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -65px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #cccccc;
}

.CompanyInfo_listEx li:hover {
    transform: none;
    box-shadow: none;
}

.CompanyInfo_listEx li div p {
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
}

.CompanyInfo_listEx li div p:first-child {
    margin-bottom: 8px;
    font-size: 18px;
}

/* 퀴즈 형식 섹션 */
.QuizTypes_section__wrapper {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 20px 100px;
}

.QuizTypes_container {
    max-width: 1200px;
    margin: 0 auto;
}

.QuizTypes_title {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.QuizTypes_subtitle {
    font-size: 17px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.QuizTypes_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.QuizTypes_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.QuizTypes_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 36px rgba(255, 87, 34, 0.2);
    border-color: #FF5722;
}

.QuizTypes_icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.QuizTypes_card:hover .QuizTypes_icon {
    transform: scale(1.1) rotate(5deg);
}

.QuizTypes_card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 24px;
}

.QuizTypes_card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.QuizTypes_card p:first-of-type {
    font-weight: 600;
    color: #333;
    font-size: 17px;
}

.QuizTypes_card p:last-child {
    margin-bottom: 0;
}

/* 방송 섹션 */
.broadcast-container {
    margin: 0 auto;
    margin-top: 7vh;
}

.broadcast-section {
    text-align: center;
}

.section-title {
    color: black;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.broadcast-wrapper {
    position: relative;
    padding: 0 5vw;
    max-width: 40vw;
    margin: 0 auto;
}

.broadcast-slider {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 0;
}

.slide {
    width: 30vw;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    display: flex;
    height: 40vh;
    opacity: 0.7;
    transform: scale(0.85);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.slide.active:hover {  /* 이 블록 추가 */
    transform: translateY(-10px) scale(1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.slide-image-section {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
}

.slide:hover .slide-image {
    transform: scale(1.1);
}

.slide-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide:hover .slide-image-overlay {
    opacity: 1;
}

.slide-content {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slide-title::before {
    content: '📺';
    font-size: 2rem;
}

.slide-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.slide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #fab66c 0%, #FF5722 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    align-self: flex-start;
}

.slide-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(255, 87, 34, 0.4);
}

.slide-link::after {
    content: '→';
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.slide-link:hover::after {
    transform: translateX(5px);
}

.broadcast-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    left: 0;
    padding: 0 10px;
}

.nav-btn {
    pointer-events: all;
    width: 7vh;
    height: 7vh;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgb(255, 87, 34);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.nav-btn:active {
    transform: scale(1);
}

.broadcast-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 0 0;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ebb7a7;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #FF5722;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.5);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
}

.broadcast-counter {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

.broadcast-counter .broadcast-current {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

/* 이벤트 섹션 */
.event-container {
    margin: 0 auto;
    margin-top: 8vh;
}

.event-section {
    text-align: center;
    margin-bottom: 3rem;
}

.event-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.carousel-wrapper {
    position: relative;
    padding: 0 10rem;
    display: flex;
    width: 90%;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;  
}

.carousel-container {
    border-radius: 20px;
    width: 90%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
    width: 100%;
}

.carousel-track > .event-card:first-child {
    margin-left: 0.7rem;
}

.event-card {
    min-width: calc(25% - 1.5rem);  
    max-width: calc(25% - 1.5rem); 
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.event-image {
    width: 100%;
    height: 20vh;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.event-card:hover {
    transform: scale(1.1);
}

.event-content {
    padding: 1.5rem;
}

.event-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: black;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-card-title::before {
    content: '🎉';
    font-size: 1.2rem;
}


.event-text {
    font-size: 0.95rem;
    color: black;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fab66c 0%, #FF5722 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.event-link:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(249, 113, 17, 0.4);
}

.event-link::after {
    content: '→';
    font-size: 1rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    left: 0;
    padding: 0 10rem;
}

.carousel-btn {
    pointer-events: all;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FF5722;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.carousel-btn:hover {
    background: #FF5722;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 113, 17, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: #FF5722;
    transform: scale(1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.indicator {
    width: 2vh;
    height: 2vh;
    border-radius: 50%;
    background: #cbd5e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: #FF5722;
    width: 5vh;
    border-radius: 10px;
}


/* 모바일 대응 */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .CompanyInfo_infoContents {
        padding: 50px 20px;
    }

    .CompanyInfo_info h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .CompanyInfo_important {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .CompanyInfo_info p {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .CompanyInfo_infoList {
        margin-top: 7rem;
    }

    .CompanyInfo_listEx {
        flex-direction: column;
        gap: 30px;
    }

    .CompanyInfo_listEx li:not(:last-child)::after {
        content: '';
        position: absolute;
        right: auto;
        left: 0;
        right: 0;
        top: auto;
        bottom: -15px;
        width: 100%;
        height: 1px;
        margin: 0 auto;
        background-color: #cccccc;
    }

    .CompanyInfo_listEx li div p {
        font-size: 15px;
        width: 60vw;
    }

    .CompanyInfo_listEx li div p:first-child {
        font-size: 16px;
    }

    .QuizTypes_section__wrapper {
        padding: 50px 15px 60px;
    }

    .QuizTypes_title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .QuizTypes_subtitle {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .QuizTypes_grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .QuizTypes_card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .QuizTypes_icon {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .QuizTypes_card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .QuizTypes_card p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .QuizTypes_card p:first-of-type {
        font-size: 15px;
    }

    /* 방송 섹션 */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .broadcast-wrapper {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }

    .broadcast-slider {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        transition: transform 0.7s ease;
        padding: 2rem 15vw;
    }

    .slide {
        width: 70vw;
        flex-shrink: 0;
        height: auto;
        min-height: 50vh;
        flex-direction: column;
        margin: 0 15vw 0 0;
        box-sizing: border-box;
    }

    .slide:first-child {
        margin-left: 0;
    }

    .slide:last-child {
        margin-right: 0; 
    }

    .slide-image-section {
        width: 100%;
        height: 25vh;
    }

    .slide-content {
        width: 100%;
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .slide-title::before {
        font-size: 1.5rem;
    }

    .slide-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .slide-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }

    .broadcast-nav {
        padding: 0 2rem;
        top: auto;
        transform: none;
        bottom: -4.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 30px;
    }

    .broadcast-counter {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .broadcast-counter .broadcast-current {
        font-size: 1.2rem;
    }

    /* 이벤트 섹션 */
    .event-container {
        margin-top: 5rem;
    }

    .event-section {
        margin-bottom: 2rem;
    }

    .event-title {
        font-size: 1.8rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .carousel-wrapper {
        padding: 0 1rem;
        width: 100%;
        overflow: visible;
    }

    .carousel-container {
        width: 100%;
        padding: 0;
        overflow: visible;
        margin-bottom: 5rem;
    }

    .carousel-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        transition: none;
        transform: none !important; 
        padding: 3rem;
    }

    .carousel-track > .event-card:first-child {
        margin-left: 0;
    }

    .event-card {
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .event-card:hover {
        transform: translateY(-5px) scale(1); 
    }

    .event-image {
        height: 22vh;
    }

    .event-content {
        padding: 1.3rem;
    }

    .event-card-title {
        font-size: 1.15rem;
        margin-bottom: 0.6rem;
    }

    .event-card-title::before {
        font-size: 1.1rem;
    }

    .event-text {
        font-size: 0.88rem;
        margin-bottom: 0.8rem;
    }

    .event-link {
        padding: 0.55rem 1.1rem;
        font-size: 0.85rem;
    }

    .carousel-nav,
    .carousel-indicators {
        display: none;
    }
}