/* Essays Page Styles */

body.essays-page {
    overflow-y: auto;
    overflow-x: hidden;
}


.essays-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 10;
}

/* Essay Detail Page - Full width container */
.essay-detail-container {
    max-width: 100%;
    margin: 0;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 10;
}

.essay-detail-container article {
    max-width: 800px;
}

/* Essay List */
.essay-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.essay-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2.5rem;
}

.essay-item:last-child {
    border-bottom: none;
}

.essay-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.essay-link:hover {
    opacity: 0.8;
}

.essay-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.essay-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.essay-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1rem;
}

.essay-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Essay Detail Page */
.essay-header {
    position: static;
    padding: 0;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.essay-header .essay-meta {
    margin-bottom: 1rem;
}

.essay-header .essay-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.essay-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.essay-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.essay-content p {
    margin-bottom: 1.5rem;
}

.essay-content p:last-child {
    margin-bottom: 0;
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ffffff;
}

.back-link::before {
    content: "\2190\00a0";
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .essays-container {
        padding: 100px 30px 60px;
    }

    .essay-title {
        font-size: 1.4rem;
    }

    .essay-header .essay-title {
        font-size: 1.75rem;
    }

    .essay-content {
        font-size: 1.05rem;
    }

    .essay-content h2 {
        font-size: 1.3rem;
    }
}
