/**
 * Certifications Component Styles
 * 제품 인증서 및 테스트 결과 섹션
 */

.certifications {
    background: #0E0E0E;
    padding: 120px 0;
}

.certifications__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.certifications__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.certifications__text {
    color: #FFFFFF;
}

.certifications__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.certifications__title-line {
    display: block;
}

.certifications__description {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.certifications__paragraph {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Right Certificates Image */
.certifications__certificates {
    width: 100%;
}

.certifications__image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certifications__image-full {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Tablet */
@media (max-width: 1024px) {
    .certifications {
        padding: 80px 0;
    }

    .certifications__container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 32px;
    }

    .certifications__content {
        text-align: center;
    }

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

/* Mobile */
@media (max-width: 640px) {
    .certifications {
        padding: 60px 0;
    }

    .certifications__container {
        padding: 0 24px;
        gap: 48px;
    }

    .certifications__title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .certifications__paragraph {
        font-size: 15px;
    }

    .certifications__description {
        gap: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .certifications {
        padding: 48px 0;
    }

    .certifications__container {
        padding: 0 16px;
        gap: 40px;
    }

    .certifications__title {
        font-size: 24px;
    }

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