/* 뉴스 테마 스킨 스타일 */

/* 상단 메뉴 스킨 */
.top_menu_skin1 {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 12px;
    height: 30px;
}

.top_menu_skin1 .top_menu_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top_menu_skin1 .top_menu_left {
    display: flex;
    gap: 15px;
}

.top_menu_skin1 .date {
    color: #666;
    font-weight: 400;
}

.top_menu_skin1 .weather {
    color: #333;
    font-weight: 400;
}

.top_menu_skin1 .top_menu_right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top_menu_skin1 .social_icons {
    display: flex;
    gap: 8px;
}

.top_menu_skin1 .social_icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.top_menu_skin1 .social_icon:hover {
    background: #007bff;
    color: #fff;
}

.top_menu_skin1 .news_tip {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.top_menu_skin1 .news_tip:hover {
    color: #007bff;
}

/* 상단 메뉴 스킨 2 - 미니멀형 */
.top_menu_skin2 {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0;
    font-size: 11px;
}

.top_menu_skin2 .top_menu_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_menu_skin2 .date {
    color: #666;
}

.top_menu_skin2 .news_tip {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* 메인 레이아웃 스킨 */
.main_layout_skin1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.main_layout_skin2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* 텍스트 리스트 스킨 */
.text_list_skin1 {
    margin-bottom: 30px;
}

.text_list_skin1 .list_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #004085;
}

.text_list_skin1 .list_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.text_list_skin1 .more_link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.text_list_skin1 .more_link:hover {
    color: #0056b3;
}

.text_list_skin1 .news_item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.text_list_skin1 .news_item:last-child {
    border-bottom: none;
}

.text_list_skin1 .news_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.text_list_skin1 .news_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.text_list_skin1 .news_title a:hover {
    color: #007bff;
}

.text_list_skin1 .news_meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

/* 텍스트 리스트 스킨 2 - 심플형 */
.text_list_skin2 {
    margin-bottom: 20px;
}

.text_list_skin2 .list_header {
    margin-bottom: 15px;
}

.text_list_skin2 .list_title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.text_list_skin2 .news_item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.text_list_skin2 .news_item:last-child {
    border-bottom: none;
}

.text_list_skin2 .news_title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
}

.text_list_skin2 .news_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.text_list_skin2 .news_title a:hover {
    color: #007bff;
}

.text_list_skin2 .news_time {
    font-size: 11px;
    color: #999;
}

/* 웹진 리스트 스킨 */
.webzine_list_skin1 {
    margin-bottom: 30px;
}

.webzine_list_skin1 .list_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #004085;
}

.webzine_list_skin1 .list_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.webzine_list_skin1 .more_link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.webzine_list_skin1 .list_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.webzine_list_skin1 .news_card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.webzine_list_skin1 .news_card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.webzine_list_skin1 .card_image {
    height: 150px;
    overflow: hidden;
}

.webzine_list_skin1 .card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webzine_list_skin1 .card_content {
    padding: 15px;
}

.webzine_list_skin1 .news_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.webzine_list_skin1 .news_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.webzine_list_skin1 .news_title a:hover {
    color: #007bff;
}

.webzine_list_skin1 .news_summary {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.webzine_list_skin1 .news_meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: #999;
}

/* 웹진 리스트 스킨 2 - 그리드형 */
.webzine_list_skin2 {
    margin-bottom: 20px;
}

.webzine_list_skin2 .list_title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.webzine_list_skin2 .list_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.webzine_list_skin2 .news_item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.webzine_list_skin2 .news_item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.webzine_list_skin2 .item_image {
    height: 120px;
    overflow: hidden;
}

.webzine_list_skin2 .item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webzine_list_skin2 .item_content {
    padding: 12px;
}

.webzine_list_skin2 .news_title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.webzine_list_skin2 .news_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.webzine_list_skin2 .news_title a:hover {
    color: #007bff;
}

.webzine_list_skin2 .news_meta {
    font-size: 11px;
    color: #999;
}

/* 헤드라인 리스트 스킨 */
.headline_list_skin1 {
    margin-bottom: 40px;
}

.headline_list_skin1 .list_title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #004085;
    padding-bottom: 10px;
}

.headline_list_skin1 .headline_item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.headline_list_skin1 .headline_item:last-child {
    border-bottom: none;
}

.headline_list_skin1 .headline_image {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.headline_list_skin1 .headline_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headline_list_skin1 .headline_content {
    flex: 1;
}

.headline_list_skin1 .headline_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.headline_list_skin1 .headline_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.headline_list_skin1 .headline_title a:hover {
    color: #007bff;
}

.headline_list_skin1 .headline_summary {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.headline_list_skin1 .headline_meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

/* 헤드라인 리스트 스킨 2 - 컴팩트형 */
.headline_list_skin2 {
    margin-bottom: 30px;
}

.headline_list_skin2 .list_title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.headline_list_skin2 .headline_item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.headline_list_skin2 .headline_item:last-child {
    border-bottom: none;
}

.headline_list_skin2 .headline_title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.headline_list_skin2 .headline_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.headline_list_skin2 .headline_title a:hover {
    color: #007bff;
}

.headline_list_skin2 .headline_meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

/* 반응형 */
@media (max-width: 768px) {
    .main_layout_skin1,
    .main_layout_skin2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .webzine_list_skin1 .list_content {
        grid-template-columns: 1fr;
    }
    
    .webzine_list_skin2 .list_grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .headline_list_skin1 .headline_item {
        flex-direction: column;
    }
    
    .headline_list_skin1 .headline_image {
        flex: none;
        height: 150px;
    }
    
    .headline_list_skin1 .headline_title {
        font-size: 20px;
    }
}
