.replaceContentArea {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    box-sizing: border-box;
}

/* ******** linkList ************* */
.linkList {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: fit-content;
    padding: 0 20px;
    box-sizing: border-box;
    /* 패딩과 보더가 전체 너비/높이에 포함되도록 */
}

.link {
    background-color: var(--grey0);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    height: 40px;
    border-radius: var(--borderRadiusBtnSmall);
}

.link:hover {
    background-color: var(--btnHover);
}

.link.link-1,
.link.link-3,
.link.link-5 {
    margin-bottom: 6px;
}

.link.link-2,
.link.link-4 {
    margin-bottom: 24px;
}

.link svg {
    width: 24px;
    height: auto;
    color: var(--grey4);
    margin-left: 8px;
}

.link.link-6 svg:not(.link-arrow) {
    width: 20px;
    margin-left: 11px;
}

.link .link-arrow {
    width: 14px;
    margin-left: auto;
    margin-right: 14px;
}

.link .link-arrow path {
    fill: var(--black);
}

.link a {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey4);
    text-decoration: none;
    flex-grow: 1;
}



.link a:hover {
    color: var(--blue2);
}

.csButtonArea {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: fit-content;
    margin-top: 20px;
    margin-bottom: 20px;
}

.csButtonArea button {
    background-color: white;
    font-weight: 500;
    width: 150px;
    height: 40px;
    border-radius: var(--borderRadiusBtnMedium);
    border: 1px solid var(--grey2);
    cursor: pointer;
    border-radius: var(--borderRadiusBtnSmall);
}

.csButtonArea button:hover {
    background-color: var(--btnHover);
}

.csButtonArea button a {
    font-size: 14px;
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
}

/* ******** Company Info ************* */
.companyInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    margin-top: auto;
    padding: 0 8px;
    box-sizing: border-box;
}

.companyDetails {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4px;
}

.companyLine1,
.companyLine2 {
    font-size: 12px;
    font-weight: 300;
    color: var(--grey3);
    text-align: center;
    line-height: 1.4;
    word-break: keep-all;
}

.copyright {
    font-size: 9px;
    font-weight: 300;
    color: var(--grey3);
    text-align: center;
}