/* ── JOURNAL GRID & CARDS ── */
.journal-section {
    padding: 4rem 2.5rem;
    border-top: 0.5px solid rgba(242, 239, 233, 0.08);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.journal-card {
    cursor: pointer;
    overflow: hidden;
    display: block;
    padding-bottom: 1rem;
}

.j-thumb-wrap {
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.j-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.85);
    transition: filter 0.4s, transform 0.6s ease;
    display: block;
}

.journal-card:hover .j-thumb {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.03);
}

.journal-card:hover .j-title {
    color: #C8935A;
}

.j-date {
    font-size: 9px;
    letter-spacing: 0.14em;
    color: rgba(242, 239, 233, 0.25);
    margin-bottom: 0.7rem;
}

.j-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.j-excerpt {
    font-size: 11px;
    line-height: 1.8;
    color: rgba(242, 239, 233, 0.35);
}

.j-tag {
    display: inline-block;
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(200, 147, 90, 0.8);
    border: 0.5px solid rgba(200, 147, 90, 0.3);
    padding: 2px 8px;
    margin-top: 0.8rem;
}

/* ── SINGLE ARTICLE ── */
.article-wrap {
  width: 100%;
  padding-bottom: 5rem;
}

.article-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  margin-bottom: 4rem;
  overflow: hidden;
}

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

.article-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 2.5rem;
}

.article-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8935A;
  margin-bottom: 1rem;
  font-family: 'DM Mono', monospace;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #F2EFE9;
  margin-bottom: 1rem;
}

.article-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(242, 239, 233, 0.35);
  font-family: 'DM Mono', monospace;
}

.article-content {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(242, 239, 233, 0.75);
}

.article-content p {
  margin-bottom: 2rem;
}

.article-content p.intro {
  font-size: 1.6rem;
  color: #F2EFE9;
  font-style: italic;
}

.article-content blockquote {
  border-left: 2px solid #C8935A;
  padding-left: 1.5rem;
  margin: 3rem 0;
  font-size: 1.8rem;
  font-style: italic;
  color: #F2EFE9;
}

.article-content h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: #F2EFE9;
  margin: 4rem 0 1.5rem;
  font-style: italic;
}

.article-content img {
  width: 100%;
  height: auto;
  margin: 3rem 0;
  border: 0.5px solid rgba(242, 239, 233, 0.08);
}

.article-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.article-inline-grid img {
  margin: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 4rem;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── CONTROLS & PAGINATION ── */
.journal-controls {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: flex-end;
  padding: 0 2.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.journal-search {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(242, 239, 233, 0.3);
  color: #F2EFE9;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 0.5rem 0;
  width: 280px;
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 0.05em;
}

.journal-search::placeholder {
  color: rgba(242, 239, 233, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.journal-search:focus {
  border-bottom-color: #C8935A;
}

.pagination {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.pag-btn {
  background: none;
  border: 0.5px solid rgba(242, 239, 233, 0.2);
  color: #F2EFE9;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.pag-btn:hover:not(:disabled) {
  background: #C8935A;
  color: #0D0D0D;
  border-color: #C8935A;
}

.pag-btn:disabled {
  opacity: 0.15;
  cursor: not-allowed;
}

.pag-info {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .journal-section {
        padding: 3.5rem 1.5rem;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .journal-controls {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
    }

    .journal-search {
        width: 100%;
        margin-bottom: 2rem;
    }

    /* Single Article Responsive */
    .article-hero {
        height: 50vh;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .article-content {
        padding: 0 1.5rem;
        font-size: 1.25rem;
    }

    .article-inline-grid {
        grid-template-columns: 1fr;
    }

    .article-content blockquote {
        font-size: 1.5rem;
    }
}