/* 기본 변수 설정 */
:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
    background-color: #fff;
    font-size: 0.92rem;
    /* 가독성을 위해 살짝 키움 */
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Hero Section: 텍스트 좌측, 사진 우측 */
.hero-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 1.8rem;
    /* 타이틀 크기 복구 */
    font-weight: 800;
    margin: 0 0 15px 0;
    color: var(--primary-color);
}

.hero-text {
    font-size: 0.92rem;
    /* Shuran Song 교수님 페이지 스타일로 정갈하게 유지하되 조금 키움 */
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

.hero-img {
    flex-shrink: 0;
}

.hero-img img {
    width: 140px;
    /* 요청하신 대로 사진 사이즈 축소 */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .hero-img img {
        width: 120px;
    }
}

.social-links {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

.social-links a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Sections */
h3 {
    font-size: 1.15rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    margin-bottom: 8px;
}

.news-list li span {
    font-weight: 700;
    margin-right: 10px;
    color: var(--text-muted);
}

/* Publication Card */
.pub-card {
    display: flex;
    align-items: center;
    /* 이미지와 텍스트 세로 중앙 정렬 */
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pub-card:last-child {
    border-bottom: none;
}

.pub-teaser img {
    width: 200px;
    height: auto;
    /* 비율 유지 */
    border-radius: 4px;
    border: 1px solid #eee;
}

.pub-info {
    flex: 1;
}

.pub-title {
    font-weight: 700;
    font-size: 1.05rem;
    /* 조금 더 키움 */
    color: #000;
    line-height: 1.4;
}

.pub-authors {
    margin: 6px 0;
    font-size: 0.92rem;
    /* 조금 더 키움 */
    color: var(--text-main);
}

.pub-venue {
    font-weight: 500;
    font-size: 0.9rem;
    /* 조금 더 키움 */
    color: #444;
    margin-bottom: 10px;
}

.pub-links a {
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.85rem;
    /* 조금 더 키움 */
    margin-right: 10px;
    padding: 2px 8px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    transition: 0.2s;
}

.pub-links a:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Responsive for publication card on mobile */
@media (max-width: 768px) {
    .pub-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}