/* css/news.ai.minimal.css (다크 미니멀리즘 스타일) */

/* 폰트 설정 및 기본 스타일 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    /* 매우 어두운 배경 */
    color: #e0e0e0;
    /* 밝은 회색 텍스트 */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* 컨테이너 및 제목 */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

#site-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #00bcd4;
    /* 청록색 강조 (미니멀 컨셉의 포인트 컬러) */
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 188, 212, 0.3);
}

/* 개별 문서(article) 스타일 */
.article {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #333333;
    /* 얇고 미묘한 구분선 */
    transition: background-color 0.3s ease;
}

.article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.article:hover {
    background-color: #1e1e1e;
    /* 호버 시 약간 밝아지는 효과 */
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

/* 이미지 섹션 */
.article-image {
    flex: 0 0 120px;
    /* 고정된 너비 */
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 이미지 자체에 테두리나 배경을 주지 않아 깔끔함을 유지 */
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* 이미지 경계선을 부드럽게 */
    border-radius: 5px;
}

/* 내용 섹션 */
.article-content {
    flex: 1;
}

.article-content h2 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
}

.article-content h2 a {
    color: #00bcd4;
    /* 제목 링크는 포인트 컬러 */
    text-decoration: none;
    transition: color 0.3s;
}

.article-content h2 a:hover {
    color: #4dd0e1;
    /* 호버 시 더 밝게 */
}

/* 메타 정보 (발표일/개발자) */
.article-meta {
    font-size: 0.85em;
    color: #888888;
    margin-bottom: 15px;
}

.article-meta span:not(:last-child) {
    margin-right: 20px;
}

/* 본문 내용 */
.article-body {
    color: #cccccc;
    font-size: 1em;
}

/* 본문 내 강조 (볼드체) */
.article-body strong {
    color: #ffffff;
    font-weight: 700;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .article {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .article-image {
        flex: none;
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .article-content h2 {
        font-size: 1.4em;
    }

    .article-meta {
        font-size: 0.8em;
        justify-content: center;
    }
}