/* Card Hover Effects */
.card {
    box-shadow: 2px 9px 17px rgba(0, 0, 0, 0.09);
    padding: 30px 20px;
    width: 32%;
    height: 414px;
    overflow: hidden;
    transition: width 0.5s ease;
    display: flex;
    border-radius: 18px;
    cursor: pointer;
    position: relative;
}

.card + .card {
    margin-left: 20px;
}

.card.active {
    width: 70%;
}

.card.active .card-contents-wrapper {
    justify-content: flex-start;
}

.card-content {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    transition: opacity 0.3s ease 0.4s;
}

.card.active .card-content {
    opacity: 1;
    max-height: 500px;
    visibility: visible;
}

.card:not(.active) .card-content {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    transition: opacity 0s, max-height 0s, visibility 0s;
}

/* Section Styles */
.section {
    width: 100%;
    min-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__inner {
    width: 1400px;
    padding: 0 60px;
    margin: 0 auto;
}

.section.white {
    background-color: white;
}

.section.gray {
    background-color: #F4F6F9;
}

/* HOME 스타일 */
.home {
    height: 100vh;
    min-height: 600px;
    margin-top: -68px;
    background: url("../../img/pc/bg-index.png") 50% 50% no-repeat;
    background-size: cover;
}

.home__inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    width: 1400px;
    margin: 0 auto;
}

/* Title Section Styles */
.title-text-area {
    color: white;
    padding-left: 60px;
}

.title-main {
    font-size: 55px;
    font-weight: bold;
}

.title-main-text.title-stressed {
    color: #51f6ff;
}

.title-sub {
    font-size: 22px;
    margin-top: 21px;
}

.title-sub-text {
    margin-bottom: 8px;
    font-weight: normal;
}

.title-sub-text.title-stressed {
    font-weight: 800;
}

/* BUSINESS 섹션 */
.business {
    padding: 100px 0 85px;
    background-color: #fff;
}

.business .contents-title {
    margin-bottom: 36px;
}

/* Contents Title Styles */
.contents-title-body {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contents-title {
    width: 1400px;
    display: flex;
    justify-content: flex-start;
    color: #222222;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 52px;
}

/* Business Card Styles */
.business-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.business-card {
    display: flex;
    flex-direction: column;
    width: 618px;
    height: 443px;
    border-radius: 10px;
    box-shadow: 2px 5px 17px rgba(0, 0, 0, 0.09);
    margin-top: 16px;
    margin-bottom: 31px;
    overflow: hidden;
}

.business-card-img-container {
    width: 618px;
    height: 232px;
}

.business-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card-contents {
    width: 100%;
    height: 211px;
    display: flex;
    background-color: white;
    flex-direction: column;
    padding: 25px;
    border-radius: 0 0 10px 10px;
}

.business-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-card-title__text {
    font-size: 28px;
    color: #222222;
    font-weight: 600;
}

.business-card-title__link {
    position: relative;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #9d9d9d;
}

.business-card-title-link:hover {
    border-bottom: 1px solid #222222;
    color: #222222;
}

.business-card-title__link::before {
    content: '';
    position: absolute;
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    background: url("../../img/pc/icon-link-arrow.svg") 0 0 no-repeat;
    background-size: 20px 20px;
}

.business-card-subtitle {
    padding: 22px 0;
}

.business-card-subtitle p {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: -0.02em;
    white-space: pre-line;
    word-break: keep-all;
    line-height: 1.6;
    color: #545454;
}

.business-card-buttons {
    display: flex;
    justify-content: center;
}

.business-card-button {
    display: flex;
    width: 136px;
    height: 32px;
    border: 1px solid #015dd1;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
}

.business-card-button + .business-card-button {
    margin-left: 10px;
}

.business-card-button a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-card-btn-text {
    font-size: 11px;
    color: #015dd1;
}

.business-card-button-img {
    height: 16px;
    margin-right: 8px;
}

/* Vaule & Culture */
.value {
    padding: 86px 0;
    background-color: #F4F6F9;
}

/* Value List Styles */
.value-list-wrapper {
    /* width: 1400px;
    padding: 0 70px; */
}

.value-list {
    position: relative;
    display: flex;
    width: 1260px;
}

.value-list + .value-list {
    margin-top: 90px;
}

.value-list + .value-list::before {
    content: '';
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.value-list-img-wrapper {
    display: flex;
    flex: 0 0 238px;
    width: 238px;
    height: 145px;
    margin-right: 45px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
}

.value-list-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-list-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.value-list-title {
    font-size: 28px;
    font-weight: bold;
    color: #015dd1;
    margin-bottom: 9px;
}

.value-list-subtitle {
    font-size: 22px;
    letter-spacing: -0.44px;
    margin-bottom: 5px;
    word-break: keep-all;
}

.value-list-text {
    font-size: 18px;
    white-space: pre-line;
    letter-spacing: -0.036px;
    line-height: 1.4;
    font-weight: normal;
    word-break: keep-all;
}

/* How We Work */
.work {
    padding: 86px 0 120px;
}

/* Career Section Styles */
.cards-container {
    display: flex;
    justify-content: space-between;
}

.card-contents-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    transition: padding-top 0.4s ease, justify-content 0.4s ease;
}

.card-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 17px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-size: 28px;
    font-weight: bold;
    color: #051dd1;
    margin-bottom: 20px;
    text-align: center;
}

.card-content .card-content-stressed {
    font-size: 18px;
    font-weight: normal;
    color: #222222;
    text-align: center;
    width: 90%;
    margin: 0 auto 15px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #545454;
    margin-bottom: 15px;
    white-space: pre-line;
    text-align: center;
    font-weight: normal;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    word-break: keep-all;
}

/* Career Banner Styles */
.career-body {
    width: 100%;
    height: 190px;
    position: relative;
    display: flex;
    padding: 90px 0;
    justify-content: center;
    align-items: center;
    min-width: 1400px;
}

.career-background {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.career-contents {
    z-index: 10;
    width: 1400px;
    height: 100%;
    padding: 0 60px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.career-text span {
    color: #222222;
    font-size: 35px;
    font-weight: bold;
}

.career-btn {
    display: flex;
    width: 160px;
    height: 60px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0, .26);
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #051DD1;
    transition: all 0.3s ease;
}

.career-btn svg {
    height: 15px;
    margin-left: 28px;
}

.career-btn:hover {
    background-color: #051DD1;
    color: white;
}

/* Work With */
.partner {
    padding: 92px 0 72px;
}

/* WorkWith Section Styles */
.work-with-container {
    width: 100%;
    padding: 92px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 1400px;
}

.company-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.logo-item {
    overflow: hidden;
    flex: 0 0 240px;
    width: 240px;
    height: 90px;
    margin: 0 10px 20px;
    background: #ffffff;
    box-shadow: 2px 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: 190px;
}