.homepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-card {
    width: 400px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    text-align: center;
}

.profile-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.profile-card p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    /* allow wrapping on smaller screens */
    align-items: center;
    /* vertical centering */
    gap: 0.75rem;
    /* space between entries */
}

.contact-entry {
    display: flex;
    align-items: center;
    /* align icon + text */
    gap: 0.3rem;
    /* spacing between icon and text */
}

.contact-entry .icon,
.contact-entry svg {
    flex-shrink: 0;
    /* prevent icons from shrinking */
    font-size: 1.1rem;
    /* consistent icon size */
}

.separator {
    margin: 0 0.5rem;
    color: #666;
    /* lighter look */
}




a:link,
a:visited {
    color: rgb(124, 8, 8);
    text-decoration: none;
    border-bottom: 1.5px dotted rgb(124, 8, 8);
}

a:hover {
  background-color: #ffeb3b; /* highlight */
  color: #000;               /* contrast */
}

.homepage-content {
    width: 100%;
    max-width: 600px;
    text-align: left;
}

/* Publications section */
#publications {
    margin: 2rem 0;
}

#publications h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

/* Publication list */
.publications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.publication-entry {
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.pub-title {
    font-weight: bold;
    color: #555;
}

.pub-venue {
    font-style: italic;
    color: #222;
}

.pub-pdf {
    text-decoration: none;
    color: #0066cc;
    font-size: 0.9em;
}


.pub-authors {
    font-size: 0.95em;
    color: #555;
}

body {
    font-family: "Ancizar Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}