main {
    max-width: 860px;
    padding: 2rem;
    margin: 0 auto;

    h1 {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #9c8e82;
        margin-bottom: 2rem;
    }

    .education-entry {
        padding: 2rem 0;
        border-top: 1px solid #d4cdc7;

        .education-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 0.75rem;

            .education-school {
                h2 {
                    font-size: 0.95rem;
                    color: #3a2f22;
                    margin: 0 0 0.25rem 0;
                }

                span {
                    font-size: 0.8rem;
                    color: #9c8e82;
                    font-style: italic;
                }
            }

            .education-date {
                font-size: 0.8rem;
                color: #9c8e82;
                font-style: italic;
                white-space: nowrap;
            }
        }

        .education-degree {
            color: #5c4f3d;
            font-size: 0.9rem;
            margin: 0 0 1rem 0;
        }

        .education-articles {
            p {
                font-size: 0.8rem;
                color: #9c8e82;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.5rem;
            }

            ul {
                margin: 0;
                padding-left: 1.25rem;
                display: flex;
                flex-direction: column;
                gap: 0.4rem;
            }

            a {
                font-size: 0.85rem;
                color: #5c4f3d;
                text-decoration: underline;
                text-underline-offset: 3px;
            }

            a:hover {
                color: #3a2f22;
            }
        }
    }
}