@font-face {
    font-family: 'Computer Modern';
    src: url('./fonts/CMU-Roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Computer Modern';
    src: url('./fonts/CMU-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Computer Modern', serif;
    color: black;
    background-color: white;
    line-height: 1.4;
    font-size: 16px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    text-align: center;
    padding: 20px 20px;
}

header h1 {
    font-size: 2.2em;
    font-weight: normal;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

header h1 a {
    color: black;
    text-decoration: none;
}

header h1 a:hover {
    color: #888888;
    text-decoration: none;
}

header h1 a:active {
    text-decoration: none;
}

.byline {
    font-size: 0.95em;
    margin: 0 0 12px 0;
    font-weight: normal;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: center;
}

nav a {
    font-size: 1em;
}

nav a.active {
    text-decoration: none;
}

nav a:hover {
    color: #888888;
    text-decoration: none;
}

/* Main Content */
main {
    padding: 40px 0 80px 0;
    min-height: calc(100vh - 400px);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 20px;
}

.left-block {
    font-size: 1.05em;
    padding-top: 0;
}

.right-block {
    font-size: 1.05em;
    padding-top: 60px;
}

.image-container {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    display: block;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.coming-soon a {
    font-size: 1.4em;
    color: black;
    text-decoration: none;
}

.coming-soon a:hover {
    color: #888888;
}

.coming-soon p {
    font-size: 1.4em;
}
h2 {
    font-size: 1.8em;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.3em;
    font-weight: normal;
    margin-top: 25px;
    margin-bottom: 10px;
}

.meta {
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 15px;
}

.work-list {
    list-style: none;
    padding: 0;
}

.work-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.work-list li:last-child {
    border-bottom: none;
}

.work-list a {
    font-size: 1.05em;
}

/* Footer */
footer {
    border-top: 1px solid black;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 60px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    header h1 {
        font-size: 1.5em;
        letter-spacing: 1px;
    }

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 0.9em;
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
        margin-top: 10px;
    }

    .left-block {
        font-size: 0.9em;
        margin-bottom: 0;
    }

    .right-block {
        font-size: 0.9em;
        padding-top: 30px;
    }

    .image-container {
        width: 67%;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    }

    .coming-soon {
        margin-top: 30px;
        min-height: auto;
        padding: 30px 20px;
    }

    .coming-soon a {
        font-size: 1.2em;
    }

    .coming-soon p {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.1em;
    }

    main {
        padding: 20px 0 40px 0;
    }
}

/* Featured Section */
.featured {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
}

.featured article h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.featured .author {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.featured .excerpt {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid var(--secondary-color);
}

.read-more:hover {
    margin-left: 5px;
    color: var(--primary-color);
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.card .author {
    color: var(--secondary-color);
    font-size: 0.95em;
    margin-bottom: 15px;
    display: block;
}

.card p {
    color: var(--light-text);
    font-size: 0.95em;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
    border-top: 3px solid var(--secondary-color);
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
    }

    nav a {
        padding: 10px 0;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        padding: 20px;
    }
}
