/* Essay-specific base styles */

.essay-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding-bottom: 10vh;
    text-align: left;
}

.home-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    font-family: 'SuisseIntl', sans-serif;
    font-size: 1rem;
    color: #333333;
    text-decoration: none;
}

.home-icon:hover {
    color: #555555;
    text-decoration: underline;
}

.essay-list {
    margin: 0;        /* remove margin above/below list */
    padding-left: 1.2rem; /* keep bullets aligned but tight */
}

.essay-list li {
    margin: 0;       /* remove spacing between bullets */
    padding: 0.15rem;      /* ensure no padding either */
}

.essay-text {
    font-size: 1.1rem;
}

/* Essay mobile styles */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.35rem;
    }
}
