body{
  margin:0;
  background:#edf3ee;
  font-family: Georgia, "Times New Roman", serif;
  color:#1d2a1d;
}

/* GLOBAL PADDING */
.page{
  padding:25px 70px;
}

@media(max-width:1000px){
  .page{ padding:15px 20px; }
}

/* HEADER */
.global-header{
  background:#0b3d91;
  color:white;
  padding:18px;
}

.header-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.title{
  font-size:32px;
  font-weight:800;
}

/* SUBMIT BUTTON */
.submit-btn{
  background:#c5f505;
  color:black;
  padding:12px 18px;
  font-size:20px;
  font-weight:bold;
  border-radius:10px;
  text-decoration:none;
}

/* ================= JOURNAL GRID (INDEX ONLY) ================= */
.container{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

/* CARD */
.card{
  background:#f4f8f2;
  border:2px solid #2e7d32;
  border-radius:14px;
  padding:18px;
  box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

.card h3{ margin:0; }

.card p{ margin:6px 0; }

/* BUTTONS */
button{
  background:#2e7d32;
  color:white;
  border:none;
  padding:9px 14px;
  border-radius:8px;
  cursor:pointer;
}

/* ================= JOURNAL PAGE LAYOUT ================= */
.journal-layout{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:20px;
}

/* YEAR SIDEBAR */
.year-box{
  background:#f4f8f2;
  border:2px solid #2e7d32;
  padding:10px;
  border-radius:12px;
}

.year-box button{
  width:70%;
  margin:2px 0;
}

/* ================= RIGHT SIDE = SINGLE COLUMN ONLY ================= */
.single-column{
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* ARTICLE CARD SAME STYLE */
.article-card{
  background:#f4f8f2;
  border:2px solid #2e7d32;
  padding:18px;
  border-radius:12px;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .container{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:700px){
  .container{ grid-template-columns:1fr; }
  .journal-layout{ grid-template-columns:1fr; }
}
