@charset "utf-8";

#bubble_section {
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    padding: 120px 0 150px;
}

#bubble_section .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

#bubble_section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

#bubble_section .sub-copy {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.6;
}

#bubble_section .bubble-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

#bubble_section .bubble-item {
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#bubble_section .bubble-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

#bubble_section .bubble-item.dark {
    justify-content: flex-start;
}

#bubble_section .bubble-item.gray {
    justify-content: flex-end;
}

#bubble_section .bubble-content {
    display: inline-block;
    padding: 30px 40px 48px 40px;
    font-size: 22px;
    color: #fff;
    line-height: 1.6;
    max-width: 85%;
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    border-radius: 0;
}

#bubble_section .bubble-item.dark .bubble-content {
    background-image: url('bubble-dark.svg');
}

#bubble_section .bubble-item.gray .bubble-content {
    background-image: url('bubble-gray.svg');
}

#bubble_section .bubble-item.gray .bubble-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bubble-gray.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

#bubble_section .bubble-item.gray .bubble-content {
    background-image: none;
}

/* 반응형 [s] */
@media (max-width: 1380px) {
    #bubble_section h2 {
        font-size: 38px;
    }

    #bubble_section .sub-copy {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    #bubble_section {
        padding: 90px 0 120px;
    }

    #bubble_section .inner {
        padding: 0 40px;
    }

    #bubble_section h2 {
        font-size: 32px;
    }

    #bubble_section .sub-copy {
        font-size: 16px;
        margin-bottom: 60px;
    }

    #bubble_section .bubble-content {
        font-size: 15px;
        padding: 25px 35px 40px 35px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    #bubble_section {
        padding: 80px 0 100px;
    }

    #bubble_section .inner {
        padding: 0 30px;
    }

    #bubble_section h2 {
        font-size: 28px;
    }

    #bubble_section .sub-copy {
        font-size: 15px;
        margin-bottom: 50px;
    }

    #bubble_section .bubble-list {
        gap: 16px;
    }

    #bubble_section .bubble-content {
        font-size: 14px;
        padding: 25px 30px 38px 30px;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    #bubble_section {
        padding: 60px 0 80px;
    }

    #bubble_section .inner {
        padding: 0 20px;
    }

    #bubble_section h2 {
        font-size: 22px;
        line-height: 1.5;
    }

    #bubble_section .sub-copy {
        font-size: 14px;
        margin-bottom: 40px;
    }

    #bubble_section .bubble-list {
        gap: 14px;
    }

    #bubble_section .bubble-content {
        font-size: 13px;
        padding: 24px 25px 34px 25px;
        max-width: 100%;
    }
}

@media (max-width: 380px) {
    #bubble_section h2 {
        font-size: 19px;
    }

    #bubble_section .sub-copy {
        font-size: 13px;
        margin-bottom: 35px;
    }

    #bubble_section .bubble-content {
        font-size: 12px;
        padding: 18px 22px 28px 22px;
    }
}
/* 반응형 [e] */
