/* 📌 "함께 보면 좋은 콘텐츠" 위젯 스타일 */
.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;
    border: 1px solid #ddd;
    background: #fff;
    margin-bottom: 20px;
}

/* 📌 큰 이미지 스타일 (테두리 제거) */
.widget-side-one .image {
    width: 100%;
}

.widget-side-one .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none;
    display: block;
}

/* 📌 제목과 작성자 전체를 아래에 배치 */
.widget-side-one .content {
    padding: 20px 15px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* 📌 제목 스타일 */
.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;
    }
}