* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

header nav ul {
    list-style: none;
    padding-top: 15px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header .profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px 0;
}

section {
    padding: 30px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.award-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    background-color: #fff;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.award-news-preview {
    border-bottom: 1px solid #eee;
}

.award-news-preview img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.award-content {
    padding: 15px;
}

.award-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.award-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.award-competition {
    color: #444;
    font-size: 0.95rem;
}

.award-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.social-links {
    margin: 15px 0;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
}

.social-links i {
    margin-right: 5px;
}

.awards-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.awards-table th {
    background-color: #f5f5f5;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.awards-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.press-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.press-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.press-content {
    padding: 15px;
}

.press-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.press-date {
    color: #666;
    font-size: 0.9rem;
}

.press-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.email {
    color: #fff;
    font-size: 1.1rem;
}

.email i {
    margin-right: 8px;
}

.social-links {
    margin-top: 5px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
}

.social-links a:hover {
    opacity: 0.8;
}

.project-item, .experience-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.project-header, .experience-header {
    margin-bottom: 15px;
}

.project-header h3, .experience-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.company {
    font-weight: bold;
    color: #666;
    margin-right: 15px;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

.project-content ul, .experience-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.project-content li, .experience-content li {
    margin-bottom: 8px;
    color: #444;
}

/* 마지막 아이템의 border 제거 */
.project-item:last-child, .experience-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.experience-header {
    margin-bottom: 15px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.experience-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.company {
    display: block;
    font-weight: bold;
    color: #666;
    font-size: 1rem;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

.experience-content {
    margin-bottom: 25px;
}

.experience-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.experience-content li {
    margin-bottom: 8px;
    color: #444;
}

.institution {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.education-details {
    margin-top: 5px;
}

.degree {
    font-size: 1.1rem;
    color: #666;
}

/* Education 섹션의 title-row 특별 처리 */
.education-details .title-row {
    margin-bottom: 0;
}
