/* 사업부 이미지 호버 시 확대 효과 */

.business-card a img {
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.business-card a:hover img {
    transform: scale(1.08);
    z-index: 2;
}
/* Business Area 섹션 */
.business-area-section {
    width: 100%;
    padding: 100px 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
}

/* 내부 콘텐츠 wrapper */
.business-area-wrapper {
    width: 100%;
    max-width: 1800px;
    display: flex;
    flex-direction: column;
    gap: 80px; /* 헤더와 카드 콘텐츠 사이의 간격 */
}

/* 섹션 헤더 (타이틀, 서브타이틀) */
.business-area-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.business-area-header .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.business-area-header .section-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #000000;
    margin: 0;
}

/* 4개의 카드를 감싸는 컨테이너 */
.business-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* 화면이 작아지면 자동으로 줄바꿈 */
}

/* 개별 카드 */
.business-card {
    flex: 1; /* 가용한 공간을 1:1:1:1 비율로 나눔 */
    min-width: 300px; /* 카드의 최소 너비 지정 */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.business-card img {
    width: 100%;
    height: 298px;
    object-fit: cover; /* 이미지 비율을 유지하며 카드에 꽉 차게 표시 */
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-content .card-title-ko {
    font-family: 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #000000;
    margin: 0;
}

.card-content .card-title-en {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #888888;
    margin: 5px 0 40px 0; /* 위, 아래 여백 설정 */
}

.card-content .card-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #000000;
    margin: 0;
    text-align: justify;
    word-break: keep-all;

}


/* 반응형 디자인 */
@media (max-width: 1200px) {
    .business-cards-container {
        gap: 40px;
    }
    .business-card {
        /* 한 줄에 2개의 카드만 표시되도록 너비 조정 */
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 768px) {

    .business-area-wrapper {
        gap: 40px;
            /* word-break: keep-all; */

    }
    .business-area-header {
        gap: 15px;
        text-align: center;
    }
    .business-area-header .section-title {
        font-size: 48px;
    }
    .business-area-header .section-subtitle {
        font-size: 16px;
    }
    .business-card {
        /* 한 줄에 1개의 카드만 표시되도록 너비 조정 */
        flex-basis: 100%;
    }
    .card-content .card-title-en {
        margin: 5px 0 20px 0;
    }
      .business-area-section {
    padding: 20px 0;
  }
  .business-area-wrapper {
    padding: 0 10px;
  }
}