* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Malgun Gothic", "맑은 고딕", helvetica, "Apple SD Gothic Neo", sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
}

.logo-area {
    margin-bottom: 30px;
}

.logo {
    font-size: 54px;
    font-weight: 900;
    color: #03c75a; /* 네이버 시그니처 그린 */
    letter-spacing: -2px;
    text-align: center;
    cursor: pointer;
}

.logo .highlight {
    color: #03c75a;
}

.search-area {
    width: 100%;
    max-width: 580px;
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    width: 100%;
    height: 56px;
    border: 2px solid #03c75a;
    border-radius: 2px;
    background-color: #fff;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 15px;
    font-size: 18px;
    font-weight: 700;
}

.search-box input::placeholder {
    color: #b3b3b3;
    font-weight: 400;
}

.search-box button {
    width: 56px;
    background-color: #03c75a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.search-box button:hover {
    background-color: #02b350;
}

.result-area {
    width: 100%;
    max-width: 580px;
    min-height: 200px;
}

.person-card {
    display: flex;
    border: 1px solid #e3e5e8;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    background-color: #f9f9fa;
    gap: 24px;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.person-card img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e3e5e8;
    background-color: #fff;
}

.person-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.person-info h2 {
    font-size: 24px;
    color: #03c75a;
    margin-bottom: 12px;
}

.person-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    word-break: keep-all;
}

.no-result {
    text-align: center;
    font-size: 16px;
    color: #888;
    padding: 40px 0;
}