/* =====================================================================
 * Blog archives (category / tag / date / posts page).
 * Article cards reuse .journal-grid / .article-card from style.css.
 * ===================================================================== */

.blog-archive {
  max-width: 1500px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}

/* ---- Head ---- */
.blog-archive__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.blog-archive__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a063;
  margin-bottom: 14px;
}
.blog-archive__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #2a241d;
  margin: 0;
}
.blog-archive__desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b5f54;
}
.blog-archive__desc p { margin: 0 0 12px; }

/* ---- Grid (override journal-grid padding for archive context) ---- */
.blog-archive .journal-grid {
  padding: 0;
}

/* ---- Empty ---- */
.blog-empty {
  text-align: center;
  color: #8a8178;
  font-size: 15px;
  padding: 40px 0 60px;
}

/* ---- Pagination ---- */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #e2dcd2;
}
.blog-pagination .page-numbers li { margin: 0; }
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: block;
  padding: 9px 15px;
  color: #5b5048;
  text-decoration: none;
  border-right: 1px solid #e2dcd2;
  font-size: 13px;
  transition: background .2s ease, color .2s ease;
}
.blog-pagination .page-numbers li:last-child a,
.blog-pagination .page-numbers li:last-child span { border-right: none; }
.blog-pagination .page-numbers a:hover { background: #f7f1e9; color: #2a241d; }
.blog-pagination .page-numbers .current { background: #2a241d; color: #fff; }

@media (max-width: 640px) {
  .blog-archive { padding: 40px 16px 70px; }
  .blog-archive__title { font-size: 25px; }
}


/* =====================================================================
 * Single post (article detail)
 * ===================================================================== */
.post-single {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 0;
}
.post-single__head { text-align: center; margin-bottom: 30px; }
.post-single__breadcrumb {
  font-size: 13px;
  letter-spacing: .4px;
  color: #8a8178;
  margin-bottom: 20px;
}
.post-single__breadcrumb a { color: #8a8178; text-decoration: none; transition: color .2s ease; }
.post-single__breadcrumb a:hover { color: #c9a063; }
.post-single__breadcrumb .sep { margin: 0 8px; color: #c9bfb2; }
.post-single__breadcrumb .current { color: #2a241d; }
.post-single__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a063;
  margin-bottom: 14px;
}
.post-single__title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.25;
  color: #2a241d;
  margin: 0 0 18px;
}
.post-single__meta {
  font-size: 13px;
  letter-spacing: .6px;
  color: #8a8178;
}
.post-single__meta .dot { margin: 0 8px; color: #ccc; }

/* Featured image — wide bleed */
.post-single__media {
  max-width: 1100px;
  margin: 8px auto 40px;
  padding: 0 24px;
}
.post-single__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f5f1ec;
}

/* Readable content column */
.post-single__content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.9;
  color: #4a4138;
}
.post-single__content > * { margin: 0 0 22px; }
.post-single__content h2 { font-size: 26px; font-weight: 600; color: #2a241d; margin: 38px 0 16px; }
.post-single__content h3 { font-size: 21px; font-weight: 600; color: #2a241d; margin: 32px 0 14px; }
.post-single__content a { color: #c9a063; text-decoration: underline; text-underline-offset: 2px; }
.post-single__content a:hover { color: #b08c4f; }
.post-single__content img { max-width: 100%; height: auto; display: block; margin: 28px auto; }
.post-single__content ul,
.post-single__content ol { padding-left: 22px; }
.post-single__content li { margin-bottom: 8px; }
.post-single__content blockquote {
  border-left: 3px solid #c9a063;
  background: #faf7f2;
  margin: 28px 0;
  padding: 18px 24px;
  font-style: italic;
  color: #5b5048;
}
.post-single__content blockquote p:last-child { margin-bottom: 0; }

/* Tags */
.post-single__tags {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.post-tag {
  font-size: 12px;
  letter-spacing: .5px;
  color: #5b5048;
  background: #f3ede4;
  border: 1px solid #e7ddcf;
  padding: 6px 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.post-tag:hover { background: #c9a063; border-color: #c9a063; color: #fff; }

/* Footer / back link */
.post-single__footer {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 24px 0;
  border-top: 1px solid #eee5d8;
}
.post-single__back {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a241d;
  text-decoration: none;
  transition: color .2s ease;
}
.post-single__back:hover { color: #c9a063; }

/* Related */
.post-related { background: #fafaf7; padding: 70px 0 80px; margin-top: 60px; }
.post-related__inner { max-width: 1500px; margin: 0 auto; }
.post-related .journal-grid { padding: 0 24px; }

/* =====================================================================
 * Comments
 * ===================================================================== */
.post-comments-wrap { padding: 60px 0 20px; }
.post-comments {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.post-comments__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #2a241d;
  margin: 0 0 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee5d8;
}
.post-comments .comment-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.post-comments .comment-list ol.children { list-style: none; margin: 16px 0 0 28px; padding: 0; }
.post-comments .comment-body {
  padding: 18px 0;
  border-bottom: 1px solid #f1ebe1;
}
.post-comments .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.post-comments .comment-author .avatar {
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.post-comments .comment-author .fn {
  font-weight: 600;
  font-style: normal;
  color: #2a241d;
  font-size: 14px;
}
.post-comments .comment-author .says { display: none; }
.post-comments .comment-meta {
  font-size: 12px;
  color: #a89c8d;
}
.post-comments .comment-meta a { color: #a89c8d; text-decoration: none; }
.post-comments .comment-content {
  font-size: 14.5px;
  line-height: 1.75;
  color: #5b5048;
  margin: 8px 0;
}
.post-comments .reply a {
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #c9a063;
  text-decoration: none;
  font-weight: 600;
}

/* Comment form */
.post-comments .comment-respond { margin-top: 10px; }
.post-comments .comment-reply-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #2a241d;
  margin: 0 0 20px;
}
.post-comments .comment-form label {
  display: block;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #8a8178;
  margin-bottom: 7px;
}
.post-comments .comment-form input[type="text"],
.post-comments .comment-form input[type="email"],
.post-comments .comment-form input[type="url"],
.post-comments .comment-form textarea {
  width: 100%;
  border: 1px solid #e2dcd2;
  border-radius: 0;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #2a241d;
  background: #fff;
  outline: none;
  transition: border-color .2s ease;
  margin-bottom: 16px;
}
.post-comments .comment-form input:focus,
.post-comments .comment-form textarea:focus { border-color: #c9a063; }
.post-comments .comment-form .comment-form-author,
.post-comments .comment-form .comment-form-email { display: inline-block; width: 48%; }
.post-comments .comment-form .comment-form-author { margin-right: 3%; }
.post-comments .comment-submit {
  background: #2a241d;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease;
}
.post-comments .comment-submit:hover { background: #c9a063; }
.post-comments .comments-closed { color: #8a8178; font-size: 14px; }

@media (max-width: 640px) {
  .post-single__title { font-size: 27px; }
  .post-single__content { font-size: 15.5px; }
  .post-comments .comment-form .comment-form-author,
  .post-comments .comment-form .comment-form-email { width: 100%; margin-right: 0; }
}


/* =====================================================================
 * Single post v2 — content + sidebar layout
 * ===================================================================== */
.post-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}
.post-main { min-width: 0; }

/* Head (left-aligned within main column) */
.post-main__head { margin-bottom: 26px; }
.post-main__breadcrumb { font-size: 13px; letter-spacing: .4px; color: #8a8178; margin-bottom: 18px; }
.post-main__breadcrumb a { color: #8a8178; text-decoration: none; transition: color .2s ease; }
.post-main__breadcrumb a:hover { color: #c9a063; }
.post-main__breadcrumb .sep { margin: 0 8px; color: #c9bfb2; }
.post-main__breadcrumb .current { color: #2a241d; }
.post-main__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a063;
  margin-bottom: 12px;
}
.post-main__title {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  color: #2a241d;
  margin: 0 0 16px;
}
.post-main__meta { font-size: 13px; letter-spacing: .6px; color: #8a8178; }
.post-main__meta .dot { margin: 0 8px; color: #ccc; }

.post-main__media { margin: 0 0 32px; }
.post-main__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f5f1ec;
}

.post-main__content { font-size: 16.5px; line-height: 1.9; color: #4a4138; }
.post-main__content > * { margin: 0 0 22px; }
.post-main__content h2 { font-size: 25px; font-weight: 600; color: #2a241d; margin: 36px 0 16px; }
.post-main__content h3 { font-size: 20px; font-weight: 600; color: #2a241d; margin: 30px 0 14px; }
.post-main__content a { color: #c9a063; text-decoration: underline; text-underline-offset: 2px; }
.post-main__content a:hover { color: #b08c4f; }
.post-main__content img { max-width: 100%; height: auto; display: block; margin: 26px 0; }
.post-main__content ul,
.post-main__content ol { padding-left: 22px; }
.post-main__content li { margin-bottom: 8px; }
.post-main__content blockquote {
  border-left: 3px solid #c9a063;
  background: #faf7f2;
  margin: 26px 0;
  padding: 18px 24px;
  font-style: italic;
  color: #5b5048;
}
.post-main__content blockquote p:last-child { margin-bottom: 0; }

.post-main__tags { margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.post-main__footer { margin: 30px 0 0; padding: 22px 0; border-top: 1px solid #eee5d8; }
.post-main__back {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a241d;
  text-decoration: none;
  transition: color .2s ease;
}
.post-main__back:hover { color: #c9a063; }

/* ---- Sidebar ---- */
.post-aside { position: sticky; top: 96px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-block { }
.sidebar-block__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #2a241d;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee5d8;
}

/* sidebar search */
.sidebar-search {
  display: flex;
  align-items: center;
  border: 1px solid #d8cebd;
  background: #fff;
}
.sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 13.5px;
  color: #2a241d;
  padding: 11px 14px;
}
.sidebar-search input::placeholder { color: #b3a99c; }
.sidebar-search button {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #8a8178;
  padding: 0 14px;
  display: flex;
  align-items: center;
  transition: color .2s ease;
}
.sidebar-search button:hover { color: #c9a063; }
.sidebar-search svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* sidebar categories */
.sidebar-cats { list-style: none; margin: 0; padding: 0; }
.sidebar-cats li { border-bottom: 1px solid #f3ede4; }
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 14px;
  color: #5b5048;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
.sidebar-cats a:hover { color: #c9a063; padding-left: 4px; }
.sidebar-cats em { font-style: normal; font-size: 12px; color: #a89c8d; }

/* sidebar recent */
.sidebar-recent { list-style: none; margin: 0; padding: 0; }
.sidebar-recent li { margin-bottom: 16px; }
.sidebar-recent a { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.sidebar-recent__img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: #f5f1ec;
}
.sidebar-recent__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-recent__body { min-width: 0; }
.sidebar-recent__title {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  color: #2a241d;
  transition: color .2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-recent a:hover .sidebar-recent__title { color: #c9a063; }
.sidebar-recent__date { display: block; font-size: 12px; color: #a89c8d; margin-top: 4px; }

/* sidebar tags */
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-aside { position: static; }
}
@media (max-width: 640px) {
  .post-main__title { font-size: 26px; }
  .post-main__content { font-size: 15.5px; }
}
