@import url('style.css');

.main-wrapper { max-width: 1200px; }
.banner { height: 250px; }
.photo-area { height: 70px; }

.profile-photo {
    width: 150px;
    height: 150px;
    top: -90px;
}

.header-info h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    border-radius: 999px;
    background: #e1f5fe;
    color: #0288d1;
    font-size: 0.8rem;
    padding: 4px 10px;
}

.personal-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.data-col p {
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95rem;
}

.data-col strong { color: #000; }

.objective-section { margin-top: 25px; }
.objective-section h2 { font-size: 1.2rem; margin-bottom: 10px; }
.objective-section p { color: #666; line-height: 1.55; }
.link-more { display: inline-block; margin-top: 15px; color: #0073b1; text-decoration: none; font-weight: 700; }

@media (max-width: 768px) {
    .personal-data-grid { grid-template-columns: 1fr; }
    .banner { height: 190px; }
    .profile-photo {
        width: 116px;
        height: 116px;
        top: -72px;
    }
}
