/**
 * NextBio Website - 인증현황 페이지 스타일
 */

.certification-page {
    width: 100%;
    background: #ffffff;
    overflow-x: hidden;
    padding: 160px 0;
}

.certification-page .content-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 섹션 */
.certification-page .certification-section {
    width: 100%;
}

.certification-page .sec-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 48px 0;
    font-family: var(--font-family-suit);
    font-weight: 700;
}

/* 인증서 그리드 - 4열 */
.certification-page .cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

/* 인증서 아이템 */
.certification-page .cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* 인증서 이미지 박스 */
.certification-page .cert-img-box {
    width: 100%;
    height: 400px;
    border: 1px solid #dfdfdf;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-page .cert-img-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 인증서 이미지 */
.certification-page .cert-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 인증서 라벨 */
.certification-page .cert-label {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
    font-family: var(--font-family-suit);
    font-weight: 500;
}

/* 반응형 */
@media (max-width: 1440px) {
    .certification-page .content-wrap {
        padding: 0 120px;
    }
}

@media (max-width: 1200px) {
    .certification-page {
        padding: 120px 0;
    }
    
    .certification-page .cert-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .certification-page .cert-img-box {
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .certification-page {
        padding: 100px 0;
    }
    
    .certification-page .content-wrap {
        padding: 0 40px;
    }
    
    .certification-page .sec-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .certification-page .cert-grid {
        gap: 32px;
    }
    
    .certification-page .cert-img-box {
        height: 300px;
    }
    
    .certification-page .cert-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .certification-page {
        padding: 60px 0;
    }
    
    .certification-page .content-wrap {
        padding: 0 20px;
    }
    
    .certification-page .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .certification-page .sec-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .certification-page .cert-img-box {
        height: 250px;
        padding: 12px;
    }
    
    .certification-page .cert-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .certification-page .cert-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .certification-page .cert-img-box {
        height: 300px;
    }
}
