/* ---------- Stories Page ---------- */

header { 
    text-align: center; 
    margin: 0 auto 20px; /* <-- change here */
    width: 80%;          /* <-- and this */
    max-width: 1400px;
}

header h1 {
    font-family: "Courier Prime",   monospace;
    font-size: 2.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #111;
    margin-bottom: 0.2rem;
}
  
header nav a.active {
    font-weight: 600;
    color: #ff7e5f;
}


/* ---------- Title Link ---------- */
.title-link {
    color: inherit;
    text-decoration: none;
    font-family: "Courier Prime", "Martian Mono", monospace;
}
  
/* .title-link:hover {
    color: #ff7e5f;  
    text-decoration: none;
} */

nav {
    margin-top: 10px;
}
  
nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-family: "Courier Prime", "Martian Mono", monospace;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
    font-style: normal;
}
  
nav a:hover,
nav a.active {
    color: #ff7e5f;
}
  
.stories-container {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
  

/* ---------- Stories / Blog Layout ---------- */
.stories {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    font-family:  "Courier Prime",  monospace; 
    /* font-family: "Courier Prime", "Lora", serif; */
    line-height: 1.7;
    color: #222;
}
  
.story-preview {
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
  
.story-preview h2 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}
  
.story-preview h2 a {
    color: #111;
    text-decoration: none;
}
  
.story-preview h2 a:hover {
    color: #ff7e5f;
}
  
.story-date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 12px;
}
  
.story-excerpt {
    color: #444;
}
  
.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.95rem;
    /* color: #ff7e5f; */
    color: #555;
    text-decoration: none;
    transition: opacity 0.2s;
}
  
.read-more:hover {
    opacity: 0.8;
}
  
  /* ---------- Single Story Page ---------- */
.story-single {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    font-family:  "Courier Prime",  monospace; 
    /* font-family:  "Lora", sans-serif; */
    line-height: 1.5;
    color: #222;
}
  
.story-single h2 {
    font-size: 2rem;
    margin-bottom: 6px;
}
  
.back-link {
    text-decoration: none;
    color: #111;
}
  
.back-link:hover {
    color: #ff7e5f;
}