/* Speak-Up Channel page */
.speakup-channel-page .info-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 40px 0;
}

.speakup-channel-page .info-box {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: 30%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.speakup-channel-page .info-box img {
    width: 125px;
    height: 125px;
    margin-right: 15px;
}

.speakup-channel-page .info-box .text {
    flex: 1;
    text-align: left;
}

.speakup-channel-page .info-box h3 {
    margin: 0;
    font-size: 18px;
    color: #4caf50;
}

.speakup-channel-page .info-box p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.speakup-channel-page .info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 10px;
}

.speakup-channel-page .additional-info p {
    margin: 5px 0;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
    text-align: left;
}

.speakup-channel-page .page-header {
    text-align: center;
    background-color: #f2f2f2;
    padding: 20px 10px;
}

.speakup-channel-page .page-header h1 {
    color: #333;
    font-size: 3rem;
}

.speakup-channel-page h2.speak-up-channel {
    text-align: center;
    color: #4caf50;
    text-decoration: underline;
    padding-top: 60px;
    margin-bottom: 60px;
    font-size: 2.2rem;
    font-style: italic;
}

.speakup-channel-page .container {
    padding: 20px;
}

.speakup-channel-page .section-title {
    font-size: 18px;
    color: #4caf50;
    font-weight: bold;
    margin: 20px 0;
}

.speakup-channel-page .steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 50px 0;
}

.speakup-channel-page .step {
    text-align: center;
    width: 13rem;
    height: 13rem;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #333;
    font-size: 2rem;
}

.speakup-channel-page .arrow2 {
    font-size: 2rem;
    color: #333;
    margin: 0 10px;
}

.speakup-channel-page .footer {
    text-align: center;
    margin-top: 40px;
}

.speakup-channel-page .footer-button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-style: italic;
}

.speakup-channel-page .side-by-side-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 40px 0;
}

.speakup-channel-page .info-box-left,
.speakup-channel-page .info-box-right {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.speakup-channel-page .info-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 15px;
}

.speakup-channel-page .info-box-left p,
.speakup-channel-page .info-box-right p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.speakup-channel-page .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.speakup-channel-page .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px 40px;
    border-radius: 10px;
    width: 60%;
    max-width: 800px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    color: #333;
    line-height: 1.8;
    position: relative;
}

.speakup-channel-page .close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 2rem;
    cursor: pointer;
}

.speakup-channel-page .close:hover {
    color: #000;
}

.speakup-channel-page .popup-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #008000;
    margin-bottom: 20px;
}

.speakup-channel-page .info-box2 {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    margin: 20px 0;
}

.speakup-channel-page .popup-title-box {
    background-color: #daf5cc;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-weight: bold;
    margin-bottom: 20px;
}

.speakup-channel-page .modal-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.speakup-channel-page .modal-content li {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.speakup-channel-page .modal-content a {
    color: #0080ff;
    text-decoration: underline;
}

.speakup-channel-page .modal-content a:hover {
    color: #0056b3;
}

.speakup-channel-page .modal-content p.important {
    font-style: italic;
    font-weight: bold;
    color: #444;
    margin: 10px 0;
}

.speakup-channel-page .faq-container {
    width: 100%;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}

.speakup-channel-page .faq-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.speakup-channel-page .faq-question {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    text-align: left;
    background-color: #e1e1e1;
    border: 1px solid #ccc;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.speakup-channel-page .faq-question:hover {
    background-color: #e8f5e9;
}

.speakup-channel-page .faq-answer {
    display: none;
    padding: 1.2rem;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fafafa;
    font-size: 1rem;
    color: #333;
}

.speakup-channel-page .faq-answer.show {
    display: block;
}

.speakup-channel-page .faq-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #4caf50;
}

.speakup-channel-page .faq-link .link-style {
    color: #4caf50;
    text-decoration: underline;
}

.speakup-channel-page .contacttitle {
    font-size: 24px;
}

.speakup-channel-page .contact-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 77%;
    margin: 1.5rem auto 0;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.speakup-channel-page .contact-container h2 {
    color: #20c85a;
    text-align: center;
}

.speakup-channel-page .contact-container h3 {
    color: #333;
    margin-top: 20px;
}

.speakup-channel-page .contact-container p {
    margin: 10px 0;
    text-align: center;
}

.speakup-channel-page .contact-container a {
    color: #007bff;
    text-decoration: none;
}

.speakup-channel-page .contact-container a:hover {
    text-decoration: underline;
}

.speakup-channel-page .info_li {
    font-size: 1.2rem;
    list-style: disc;
}

.speakup-channel-page .footer-button.outlink::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: .5rem;
    background-image: url("data:image/svg+xml,%3Csvg data-name='ico_new_tab - 16' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg data-name='그룹 493507'%3E%3Cg data-name='그룹 493500'%3E%3Cg data-name='그룹 493504'%3E%3Cpath data-name='패스 871495' d='M2.842 10.13v-8.5h3.28' transform='translate(.658 2.37)' style='fill:none;stroke-linejoin:round;stroke:%23fff;stroke-linecap:round'/%3E%3Cpath data-name='패스 871496' d='M3.28 8.5V0H0' transform='rotate(90 1.39 10.61)' style='fill:none;stroke-linejoin:round;stroke:%23fff;stroke-linecap:round'/%3E%3C/g%3E%3C/g%3E%3Cg data-name='그룹 493506'%3E%3Cg data-name='그룹 493505'%3E%3Cpath data-name='패스 871497' d='M11 1.253H7.5' transform='translate(2 1.747)' style='fill:none;stroke:%23fff;stroke-linecap:round'/%3E%3Cpath data-name='패스 871498' d='M3.5 0H0' transform='rotate(-90 9.75 -3.25)' style='fill:none;stroke:%23fff;stroke-linecap:round'/%3E%3C/g%3E%3Cpath data-name='패스 871499' d='m13.241 3.768-4 4' transform='translate(-.241 -.768)' style='fill:none;stroke:%23fff;stroke-linecap:round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.speakup-channel-page article.innerContentsWrap.viewMargin {
    margin-top: 0;
}

.speakup-channel-page article.innerContentsWrap.viewMargin .contentsWrap {
    padding-top: 0 !important;
}

#wrapper {
    padding: 1.75rem 0 2.25rem 0;
}

#wrapper .contentsWrap .contentsHead h2.speak-up-channel {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .speakup-channel-page .info-box img {
        width: 100%;
        height: 125px;
        margin-right: 15px;
    }

    .speakup-channel-page .info-box {
        display: block;
    }

    .speakup-channel-page .modal-content {
        width: 90%;
    }

    .speakup-channel-page .side-by-side-container {
        display: grid;
    }
}

@media screen and (max-width: 480px) {
    .speakup-channel-page .info-box img {
        width: 100%;
        height: 125px;
        margin-right: 15px;
    }

    .speakup-channel-page .info-box {
        display: block;
    }

    .speakup-channel-page .product-row {
        display: block;
    }
}

@media (max-width: 1024px) {
    .speakup-channel-page .contact-container {
        max-width: unset;
    }
}

@media (max-width: 426px) {
    .speakup-channel-page .info_li {
        font-size: 0.8rem;
    }

    .speakup-channel-page .modal-content {
        width: 90%;
    }
}

@media screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {
    .speakup-channel-page .modal-content {
        width: 90%;
    }
}
