body {
    background-color: #EFEFE8;
    color: #000;
    height: auto; /* override 1000vh from index */
}

/* Navbar Overrides for Light Mode */
/* We want it to be transparent like the main page initially */
.navbar {
    opacity: 1 !important; /* Always visible on journal page */
    position: fixed !important;
}

/* Navbar uses default white text from styles.css */

/* Journal Specific Styles */
.journal-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.journal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-container {
    margin: 60px auto;
    padding: 0 80px;
    min-height: 50vh;
}

.journal-filters {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.journal-filters a {
    color: #000;
    text-decoration: none;
    padding-bottom: 4px;
}

.journal-filters a.active {
    border-bottom: 2px solid #000;
}

/* Highlighted Article */
.journal-highlight {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .journal-highlight {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    .journal-highlight-img {
        flex: 0 0 55%;
        max-width: 55%;
    }
    .journal-highlight-content {
        flex: 1;
    }
}

.journal-highlight-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.journal-highlight-content {
    display: flex;
    flex-direction: column;
}

.journal-highlight-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 12px;
}

.journal-highlight-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.journal-highlight-preview {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 24px 0;
}

.journal-highlight-read-more {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.journal-highlight-read-more:hover {
    color: #6a8c6d;
    border-color: #6a8c6d;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.journal-card {
    display: flex;
    flex-direction: column;
}

.journal-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 20px;
}

.journal-card-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 12px;
}

.journal-card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.journal-card-read-more {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.journal-card-read-more:hover {
    color: #000;
}

/* Footer override for regular pages */
.scene5-footer.journal-footer {
    position: relative;
    background: #000;
    padding-top: 60px;
}
