a {
    text-decoration: none;
    color: #1E1E1E;
}
/* 헤더 제외한 콘텐츠 영역 */
.content-section {
	font-family: 'NeoDunggeunmoPro-Regular';
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 35px); /* 헤더(35px) 제외한 나머지 높이 */
    overflow: hidden;
    padding: 0;
}

/* 2번째 줄: 선택된 항목 표시 */
.profile-display {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    align-items: center;
}

.folderTitle{
	display: flex;
    font-size: 18px;
    padding: 7px 0px;
}
.view-options {
    display: flex;
    padding: 3px 0;
}

.view-btn {
	padding: 2px 10px;
	font-size: 22px;
}

/* 3번째 줄: 스크롤 가능한 콘텐츠 목록 */
.profile-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    overflow-y: auto;
}

/* 2칸 보기 모드 */
.profile-list.double {
    grid-template-columns: repeat(3, 1fr);
}

/* 스크롤바 커스텀 */
.profile-list::-webkit-scrollbar {
    width: 8px;
}

.profile-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.profile-list::-webkit-scrollbar-track {
    background: #f0f0f0;
}

/* 프로필 카드 기본 스타일 */
.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

/* 프로필 이미지 슬라이더 */
.profile-slider {
    width: 100%;
    max-width: 290px;
    overflow: hidden;
    position: relative; /* 내부 요소 고정 */
    height: auto; /* 자동 높이 설정 */
}

.slide {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    display: block;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* 첫 번째 슬라이드 활성화 */
.slide:first-child {
    display: block;
}

/* 슬라이드 좌/우 버튼 */
.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
}

.prev-slide {
    left: 0px;
}

.next-slide {
    right: 0px;
}

/* 현재 사진 번호 */
.slide-number {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 5px;
}
/* 프로필 내용 */
.profile-content {
	width: 100%;
	max-width:  500px;
    text-align: left;
    padding-top: 10px;
    padding-left: 5px;
}

.profile-content h3{
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-family: 'DNFBitBitv2';
    font-weight: normal;
    font-size: 17px;
}

.profile-content .content{
    padding: 8px 0;
    font-size: 15.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    line-height: 17px;
}

.profile-content ul{
	display: grid;
    grid-template-columns: 40px auto;
}

.profile-content li{
    display: inline-block;
	word-break: keep-all;
	width: 90%;
	vertical-align: top;
}


.profile-content .emp{
	color: lightgray;
}

.profile-content .year{
	color: darkgray;
    padding-right: 6px;
}

/* 반응형 스타일 */
@media (max-width: 900px) {
    
}

@media (min-width: 901px) {
	.profile-item {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .profile-slider {
        max-width: 400px;
    }

}
