/* ============================================================
   company/company.css — 회사소개 페이지 전용 스타일
============================================================ */

/* ---------- 조직 카드 / ESG 카드 호버 ---------- */
.org-card,
.cert-card,
.esg-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.org-card:hover,
.esg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -15px rgba(0, 98, 255, 0.15);
    border-color: var(--main-blue);
}
.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 50px -15px rgba(0, 0, 0, 0.1);
}

/* ---------- 이미지 플레이스홀더 ---------- */
.img-placeholder {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 1rem;
    aspect-ratio: 1 / 1.414;  /* A4 비율 */
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}
.img-placeholder::after {
    content: "이미지 영역";
}

/* ---------- 파트너 로고 박스 ---------- */
.partner-logo-box {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 2.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-weight: 800;
    font-size: 1rem;
    height: 140px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.partner-logo-box:hover {
    transform: scale(1.03);
    border-color: var(--main-blue);
    box-shadow: 0 20px 25px -5px rgba(0, 98, 255, 0.1);
    color: var(--main-blue);
}
