.columnContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-top: 16px;
    padding: 0px 6px;
    overflow-y: auto;
    overflow-x: hidden;

    /* 스크롤 기능 유지 */
    &::-webkit-scrollbar {
        display: none;
        width: 0;
    }

    /* 스크롤바 숨기기 */
    scrollbar-width: none;

    /* Firefox */
    &::-webkit-scrollbar {
        /* Chrome, Safari, Edge */
        display: none;
        width: 0;
    }

}

/*----- column list 영역 -----*/
.columnList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    /* 부모 .asideOn의 가로 너비를 꽉 채움 */
    flex-shrink: 0;
    /* 내용에 따라 크기가 결정되도록 함*/
    box-sizing: border-box;
    /* margin-top: 10px; */
    margin-bottom: 60px;
    /* 패딩이 전체 너비/높이에 포함되도록 */
}

/* 인기 칼럼 섹션은 기본적으로 숨김 (JavaScript에서 콘텐츠 확인 후 표시) */
#preferredColumnList {
    display: none;
}

.columnListTitle {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 30px;
    /* padding: 0px 2px; */
}

.columnListTitle p {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.columnCheckboxArea {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: fit-content;
    /* 자식 내용에 따라 높이가 조절됩니다. */
    gap: 4px;
    /* 카드와 체크박스 사이의 일정한 간격 보장 */
}

/*---- 체크 박스 미선택 기본 상태 ----*/
.columnCheckbox {
    background-color: white;
    width: 26px;
    height: 26px;
    min-width: 26px;
    /* 최소 너비 고정 */
    margin: 0 8px;
    border-radius: var(--borderRadiusSmall);
    border: 1px solid var(--grey3);
    flex-shrink: 0;
    /* 찌그러지지 않도록 고정 */
}

/*---- 체크 박스 선택 상태 ----*/
.columnCheckboxSelect {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--blue1);
    width: 26px;
    height: 26px;
    min-width: 26px;
    /* 최소 너비 고정 */
    margin: 0 8px;
    border-radius: var(--borderRadiusSmall);
    border: 1px solid var(--grey2);
    flex-shrink: 0;
    /* 찌그러지지 않도록 고정 */
}

.columnCheckboxSelect svg {
    width: 18px;
    height: auto;
}

.columnCheckboxArea>a {
    flex: 1 1 0;
    /* flex-grow: 1, flex-shrink: 1, flex-basis: 0으로 반응형 크기 조정 */
    min-width: 0;
    /* min-width: 0을 추가하여 flex 아이템이 콘텐츠 크기 이하로 줄어들 수 있게 합니다. */
    overflow: hidden;
    /* 내용이 넘칠 경우 숨김 처리 */
}

.columnCard {
    background-color: var(--grey1);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 140px;
    border-radius: var(--borderRadiusMedium);
    margin-left: 0;
    overflow: hidden;
    /* 카드의 내용이 경계를 넘지 않도록 합니다. */
}

.columnCardTextArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 텍스트 영역을 세로 중앙에 가깝게 정렬합니다. */
    height: 140px;
    margin-right: 10px;
    padding-left: 4px;
    flex: 1 1 0;
    /* flex-grow: 1, flex-shrink: 1, flex-basis: 0으로 반응형 크기 조정 */
    min-width: 0;
    /* 텍스트 영역이 콘텐츠 크기 이하로 줄어들 수 있게 합니다. */
    max-width: 100%;
    /* 부모 컨테이너를 넘지 않도록 제한 */
    overflow: hidden;
    /* 내부 콘텐츠가 넘칠 경우를 대비합니다. */
}

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

.columnTitle {
    font-size: 16px;
    font-weight: 400;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 12px;
    white-space: nowrap;
    /* 텍스트가 줄바꿈되지 않고 한 줄로 강제합니다. */
    overflow: hidden;
    /* 요소의 너비를 넘어가는 텍스트를 숨깁니다. */
    text-overflow: ellipsis;
    /* 숨겨진 텍스트 대신 말줄임표(...)를 표시합니다. */
    max-width: 100%;
    /* 부모 컨테이너를 넘지 않도록 제한 */
    box-sizing: border-box;
    /* 마진과 패딩을 포함한 크기 계산 */
}

.columnContents {
    font-size: 14px;
    font-weight: 200;
    height: calc(14px * 1.4 * 4);
    /* 4줄 정확한 높이: 14px * 1.4 * 4 = 78.4px */
    margin: 0 10px 4px 10px;
    padding: 0;
    /* 패딩 명시적 리셋 */
    line-height: 1.4;
    /* 폰트 크기 14px * 1.4 = 19.6px (한 줄 높이) */
    max-width: 100%;
    /* 부모 컨테이너를 넘지 않도록 제한 */
    box-sizing: border-box;
    /* 마진과 패딩을 포함한 크기 계산 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.columnThumbnail {
    background-color: blanchedalmond;
    width: 120px;
    height: 120px;
    border-radius: var(--borderRadiusMedium);
    overflow: hidden;
    flex-shrink: 0;
    /* 썸네일 이미지가 줄어들지 않도록 고정합니다. */
    margin: 10px;
    /* 좌우 공간 확보 */
}

.columnThumbnail img {
    width: 100%;
    /* 부모 .columnThumbnail의 너비를 꽉 채움 */
    height: 100%;
    /* 부모 .columnThumbnail의 높이를 꽉 채움 */
    object-fit: cover;
    /* 중요: 이미지 비율을 유지하면서 부모 요소를 꽉 채움 */
    display: block;
    /* img 태그는 인라인 요소이므로, 블록 요소로 변경하여 여백 문제를 방지 */
}