/* 📌 "함께 보면 좋은 콘텐츠" 위젯 스타일 */
.widget-side-one {
    border: none; /* 전체적인 테두리 제거 */
    padding: 0;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
	margin-left: 15px; /* 좌측으로 15px 이동 */
}

.widget-side-one-title {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 10px;
    border-top: 3px solid #222;
    border-bottom: 1px solid #eee;
    margin: 0 0 10px 0; /* 제목과 이미지 사이 10px 띄우기 */
    overflow: hidden;
    text-overflow: ellipsis;
	margin-left: 15px; /* 좌측으로 15px 이동 */
	margin-bottom: 15px; /* 기존 10px → 15px으로 조정 */
}

.widget-side-one-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

/* 📌 큰 이미지 스타일 (테두리 제거) */
.widget-side-one .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none; /* 이미지 테두리 제거 */
    display: block; /* 불필요한 하단 여백 제거 */
    margin-bottom: -1px; /* 테두리와 강제 결합 */
}

/* 📌 제목과 작성자 전체를 아래에 배치 */
.widget-side-one .content {
    padding: 15px;
    border: 1px solid #ddd; /* 텍스트 부분 테두리 유지 */
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1; /* 보더는 사진보다 아래 레이어에 위치 */
	padding-bottom: 5px; /* 기존 값보다 줄여서 테두리를 위로 올리기 */
}

/* 📌 제목 스타일 */
.widget-side-one .content a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.widget-side-one .content a:hover {
    color: #0073aa;
}

/* 📌 작성자 스타일 */
.widget-side-one .content .author {
    font-size: 14px;
    color: #777;
}

/* 📌 반응형 조정 */
@media screen and (max-width: 768px) {
    .widget-side-one {
        padding: 0 !important;
        margin: 0 !important;
    }
	
	.widget-side-one-title {
		margin-left: 0px; /* 좌측으로 15px 이동 */
	}


    .widget-side-one .content a {
        font-size: 16px;
    }
}
