header {
    margin-bottom: 40px;
}

.site-title {
    text-align: center;
    margin-bottom: 15px;
}

.navbar {
    display: flex;
    justify-content: space-evenly;  /* equal spacing */
    align-items: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.navbar a {
    text-decoration: none;
    color: #0366d6;
    font-weight: 500;
}

.navbar a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;   /* controls overall page width */
    margin: 0 auto;     /* centers content */
    padding: 0 5px;    /* adds left/right breathing room */
}

.profile-image img {
    width: 90px;
    height: auto;
    border-radius: 6px;
}

.section {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;  /* light horizontal line */
}


hr {
    border: none;
    border-top: 1px solid #f0f0f0;  /* light grey line */
    margin: 50px 0;
}

.news-list {
    list-style: none;   /* remove default bullets */
    padding: 0;
}

.news-list li {
    display: grid;
    grid-template-columns: 90px 1fr;  /* fixed date column */
    gap: 15px;
    margin-bottom: 12px;
}

.news-date {
    font-weight: 600;
    color: #555;
}

.news-text {
    line-height: 1.5;
}
