/* This centers everything and sets a clean, readable font */
.contact-email {
    font-size: 1rem;
    margin-top: -0.5rem; /* Pulls the email slightly closer to your name */
    margin-bottom: 2rem;
    color: #999;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
    margin: 0;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the container */
    text-align: left;  /* Centers the text */
}

a {
    color: #006e21;
}

/* This keeps the text from stretching too wide on big screens */
.container {
    max-width: 600px;
    width: 100%;
}

/* Name styling */
h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    margin-bottom: -0.5rem;
    color: #111;
    letter-spacing: -0.5px;
}

/* Biography styling */
.bio {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

/* Section Heading styling */
h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* Removing default bullet points from the list */
.reporting-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Adding space between articles */
.reporting-list li {
    margin-bottom: 1.5rem;
}

/* Article Link styling */
.article-title {
    display: block;
    font-weight: 600;
    color: #006e21;
    text-decoration: none;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.article-title:hover {
    text-decoration: underline;
}

/* Publication Name / Date styling */
.publication {
    font-size: 0.9rem;
    color: #777;
}