


.journal-page {
  background: #080b11;
}

.journal-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 11, 17, 0.6) 0%, rgba(8, 11, 17, 0.95) 100%);
}

.journal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  margin-top: -200px;
}   

.journal-hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 1rem 0;
  line-height: 1.1;
  color: #f5f3ee;
}

.editorial-intro {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(245, 243, 238, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}


.journal-paper-bg {
  background-color: #FDFBF5;
  padding: 4rem 0 6rem;
  color: #2B2B2B; 
}

.journal-filters-section {
  margin-bottom: 3rem;
  text-align: center;
}

.journal-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  padding-bottom: 1rem;
}

.filter-btn {
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(43, 43, 43, 0.6);
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  color: #d4af37;
  font-weight: 600;
}


.masonry-grid {
  column-count: 3;
  column-gap: 2rem;
}

@media (max-width: 1024px) { .masonry-grid { column-count: 2; } }
@media (max-width: 640px) { .masonry-grid { column-count: 1; } }

.journal-card {
  break-inside: avoid;
  margin-bottom: 2rem;
  background: #fff;
  border: 1px solid rgba(43, 43, 43, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 0.5rem;
  overflow: hidden;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.journal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.journal-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.gerege-img {
  background: #111;
  padding: 2rem;
}

.journal-card-content {
  padding: 2rem;
}

.journal-category {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: 600;
}

.journal-card h3 {
  font-family: 'Cinzel', serif;
  color: #1a1a1a;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.journal-excerpt {
  font-family: 'Lora', serif;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.journal-discover {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2B2B2B;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.journal-discover:hover {
  color: #d4af37;
}


.sealed-entry-section {
  margin-top: 4rem;
}

.sealed-entry-box {
  position: relative;
  background: #080b11;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 1rem;
  overflow: hidden;
}

.sealed-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 60%);
}

.sealed-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.sealed-icon {
  width: 60px;
  margin: 0 auto 1.5rem;
  opacity: 0.8;
}

.sealed-content h2 {
  color: #f5f3ee;
  margin-bottom: 1rem;
}

.sealed-content p {
  color: rgba(245, 243, 238, 0.7);
  margin-bottom: 2rem;
}

.gold-btn {
  color: #d4af37 !important;
  border-color: #d4af37 !important;
}