.box_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-48);
    padding: var(--space-32) var(--space-40);
    border-radius: var(--space-16);
    background-color: #DCEFE4;
}
.box_text {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}
.box_text h2 {
    font-size: var(--font-size-heading-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-1);
    color: var(--gray-800);
}
.box_text p {
    font-size: var(--font-size-body-md);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-4);
    color: var(--gray-700);
}
.box_info figure {
    width: 140px;
}
.box_info figure img {
    width: 100%;
}

/* 텍스트가 많은 Box */
.box_detail {
    position: relative;
    max-height: 396px;
    overflow: hidden;
    border-radius: var(--space-12);
    background-color: var(--color-subtle);
}
.box_content {
    padding: var(--space-24);
}
.ctrl_show {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding-right: var(--space-24);
    padding-left: var(--space-24);
    padding-bottom: var(--space-24);
    height: var(--space-48);
    background-color: var(--color-subtle);
    font-size: var(--font-size-button);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-2);
    color: var(--gray-600);
    cursor: pointer;
}
.ctrl_show::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0), rgba(248, 249, 250, 1));
    pointer-events: none;
    z-index: 999;
}
.icon_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--space-20);
    height: var(--space-20);
    border-radius: var(--radius-full);
    background-color: var(--color-bg);
    border: 1px solid var(--gray-400);
}
.icon_circle img {
    width: 5px;
}
.box_detail.show {
    max-height: none;
}
.box_detail.show .ctrl_show {
    position: relative;
    inset: 0;
    padding: 0 0 0 var(--space-24);
}
.box_detail.show .icon_circle img {
    transform: rotate(180deg);
}
.box_detail.show .ctrl_show::before {
    display: none;
}

@media screen and (max-width: 1024px) {
    .box_info {
        padding: var(--space-16);
    }
    .box_text p {
        word-break: keep-all;
    }
    .box_info figure {
        width: 65px;
    }
}