body {
    background-color: #f5f7fa;
    margin-bottom: 60px;
    color: #2d3748;
}

p {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* ── Navbar ── */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    font-family: ‘Times New Roman’, Times, serif;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar a {
    color: #555;
    text-decoration: none;
    padding: 16px 20px;
    font-size: 16px;
    display: inline-block;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.navbar a:hover,
.navbar a[style*="color: rgb(0, 0, 0)"] {
    color: #1a1a2e;
    border-bottom-color: #e94560;
}

@media screen and (max-width: 600px) {
    .navbar { flex-direction: column; align-items: center; }
    .navbar a { display: block; width: 100%; text-align: center; border-bottom: none; padding: 10px; }
}

/* ── Profile section ── */
.main-div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4vw;
    margin-top: 48px;
    padding: 0 16px;
}

.profile-pic {
    width: 20vw;
    max-width: 190px;
    min-width: 140px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #d0d7e2;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.my-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

h1 {
    display: flex;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
    margin-bottom: 1.2vh;
    font-family: ‘Times New Roman’, Times, serif;
    color: #1a1a2e;
    letter-spacing: 0.01em;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: clamp(14px, 1.8vw, 17px);
    color: #4a5568;
}

.about-info a {
    text-decoration: none;
    transition: color 0.2s;
}

.about-info a:hover {
    color: #e94560 !important;
}

.social-links {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 12px;
}

.social-links a {
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.85;
}

.social-links a:hover {
    transform: scale(1.2);
    opacity: 1;
}

@media (max-width: 600px) {
    .main-div { flex-direction: column; align-items: center; text-align: center; }
    .my-info { align-items: center; }
    .profile-pic { margin-bottom: 16px; }
    .about-info { gap: 6px; align-items: center; }
    .social-links { justify-content: center; }
}

/* ── Divider ── */
.horizontal-line {
    width: clamp(70%, 50vw, 90%);
    max-width: 860px;
    margin: 2.5vh auto;
    border: none;
    border-top: 1px solid #dde1e7;
}

@media (max-width: 600px) {
    .horizontal-line { width: 90%; margin: 3vh auto; }
}

/* ── About text ── */
.about-text {
    width: clamp(60%, 50vw, 90%);
    max-width: 800px;
    margin: auto;
    text-align: left;
    line-height: 1.75;
    font-size: clamp(14px, 1.8vw, 17px);
    color: #3a4557;
    padding: 0 4px;
}

@media (max-width: 600px) {
    .about-text { width: 90%; }
}

/* ── News ── */
.news-title {
    width: clamp(60%, 50vw, 90%);
    max-width: 800px;
    margin: auto;
    text-align: left;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    font-family: ‘Times New Roman’, Times, serif;
    color: #1a1a2e;
    letter-spacing: 0.02em;
}

.news-list {
    width: clamp(60%, 45vw, 85%);
    max-width: 750px;
    margin: 10px auto 0;
    text-align: left;
    padding-left: 0;
    list-style: none;
}

.news-list li {
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.6;
    padding: 10px 14px;
    margin-bottom: 8px;
    background: #fff;
    border-left: 4px solid #e94560;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

@media (max-width: 600px) {
    .news-title, .news-list { width: 90%; }
    .news-list li { font-size: 15px; }
}

