:root {
  --font-size-base: 16px;
}

/* About Me section */
.about-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-block: 2rem;
}

.profile-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-top: 0;
}

@media (max-width: 37.4em) {
    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .profile-photo {
        width: 140px;
        height: 140px;
    }
}

/* Publications section */
.publications-section {
    margin-block: 2rem;
}

.publications-list {
    list-style: decimal;
    padding-inline-start: 1.5rem;
    margin-block: 1rem;
}

.publications-list li {
    text-indent: 0;
    margin-block: 1.25rem;
    padding-inline-start: 0.5rem;
    line-height: 1.5;
}

.publications-list li::before {
    content: none;
}

.pub-title {
    font-weight: bold;
    display: block;
}

.pub-authors {
    color: var(--color-text-muted, #737373);
    font-size: 0.9em;

    display: block;
    margin-top: 0.5em;
}

.pub-venue {
    color: var(--color-text-muted, #737373);
    font-size: 0.9em;
    font-style: italic;

    display: block;
    margin-top: 0.3em;
}
