/* Abikrishna Journal Page Editorial Styling */
.blog-page .site-header nav .selected {
  position: relative;
}
.blog-page .site-header nav .selected:after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 45%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.blog-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px max(5vw, 40px) 80px;
}

/* Journal Hero Section */
.journal-hero {
  padding: 20px 0 48px;
}

.journal-hero-content {
  max-width: 780px;
}

.journal-hero h1 {
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -3.5px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ink);
}

.journal-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.journal-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 32px;
}

/* Integrated Search Bar */
.journal-search-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid #e2ded9;
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s var(--ease);
}

.journal-search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 78, 27, 0.12);
}

.journal-search-bar i {
  color: #888;
  font-style: normal;
  font-size: 17px;
}

.journal-search-bar input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: 500 14px 'Manrope', sans-serif;
  color: var(--ink);
}

.search-clear-btn {
  background: none;
  border: 0;
  color: #888;
  cursor: pointer;
  padding: 4px 6px;
  font-size: 13px;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
}

.search-clear-btn:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.08);
}

/* Featured Magazine Spotlight Hero Card */
.featured-spotlight {
  margin-bottom: 56px;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 56% 44%;
  background: #fff;
  border: 1px solid #e7e3de;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s ease;
  cursor: pointer;
}

.spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(35, 22, 9, 0.09);
  border-color: #f2b39c;
}

.spotlight-media {
  position: relative;
  overflow: hidden;
  height: 380px;
  background: #f4efe9;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.spotlight-card:hover .spotlight-media img {
  transform: scale(1.05);
}

.spotlight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
}

.spotlight-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.spotlight-tag {
  font: 700 10px 'DM Mono', monospace;
  letter-spacing: 1.2px;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
}

.spotlight-readtime {
  font: 600 11px 'Manrope', sans-serif;
  color: var(--muted);
}

.spotlight-title {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  letter-spacing: -1.8px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--ink);
  transition: color 0.3s ease;
}

.spotlight-card:hover .spotlight-title {
  color: var(--accent);
}

.spotlight-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #f2ede8;
}

.spotlight-author {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.spotlight-date {
  color: #888;
  font-weight: 500;
  font-size: 12px;
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.spotlight-cta b {
  display: grid;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  transition: all 0.3s var(--ease);
}

.spotlight-card:hover .spotlight-cta b {
  background: var(--accent);
  transform: translate(3px, -3px);
}

/* Article Collection Section */
.article-collection {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #dfd8d2;
  border-radius: 30px;
  font: 700 13px 'Manrope', sans-serif;
  color: #555;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-pill:hover {
  color: #111;
  border-color: #999;
  transform: translateY(-2px);
}

.filter-pill.active {
  color: #fff;
  background: #111;
  border-color: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.collection-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  line-height: 1;
}

.collection-sort span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin: 0;
  padding: 0;
}

.sort-select {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 36px 0 16px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  border: 1px solid #dfd8d2;
  border-radius: 12px;
  font: 700 13px/1 'Manrope', sans-serif;
  color: #111;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.sort-select:hover {
  border-color: #111;
}

.sort-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 78, 27, 0.12);
}

/* Journal Grid Layout */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7e3df;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  cursor: pointer;
  position: relative;
}

.journal-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
  border-color: #f2b39c;
}

.journal-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f4efe9;
}

.journal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.journal-card:hover .journal-card-media img {
  transform: scale(1.07);
}

.journal-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.journal-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.journal-category-tag {
  color: var(--accent);
  font: 700 10px 'DM Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.journal-read-time {
  color: #888;
  font-size: 12px;
  font-weight: 500;
}

.journal-card-title {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.8px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
  transition: color 0.25s ease;
}

.journal-card:hover .journal-card-title {
  color: var(--accent);
}

.journal-card-excerpt {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.journal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f2ede8;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.journal-card-date {
  color: #888;
  font-size: 12px;
  font-weight: 500;
}

.journal-card-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--ink);
  border: 1px solid #ddd;
  border-radius: 50%;
  place-items: center;
  transition: all 0.3s ease;
}

.journal-card:hover .journal-card-arrow {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(2px, -2px);
}

/* Empty State */
.journal-empty-state {
  padding: 70px 20px;
  text-align: center;
}

.empty-card {
  max-width: 440px;
  margin: 0 auto;
  padding: 44px 32px;
  background: #fff;
  border: 1.5px dashed #ded7d0;
  border-radius: 20px;
}

.empty-icon {
  font-size: 36px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.empty-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.empty-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.reset-btn {
  padding: 12px 26px;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 30px;
  font: 700 13px 'Manrope', sans-serif;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.reset-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Trending Kinetic Design Philosophy Card (Linear / Cosmos Style) */
.journal-quote-banner {
  margin: 70px 0 40px;
  background: #0d0c0c;
  color: #ffffff;
  border-radius: 28px;
  padding: 56px 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.glow-border-layer {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 78, 27, 0.18) 0%, rgba(255, 78, 27, 0) 70%);
  pointer-events: none;
  filter: blur(44px);
}

.quote-banner-container {
  position: relative;
  z-index: 1;
}

.quote-header-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.philosophy-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.philosophy-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font: 800 10.5px 'DM Mono', monospace;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.philosophy-tab:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.philosophy-tab.active {
  background: rgba(255, 78, 27, 0.16);
  border-color: rgba(255, 78, 27, 0.4);
  color: var(--accent, #ff4e1b);
  box-shadow: 0 0 14px rgba(255, 78, 27, 0.2);
}

.philosophy-carousel-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 6px 4px 12px;
  border-radius: 99px;
}

.carousel-counter {
  font: 700 11px 'DM Mono', monospace;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.carousel-arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-arrow-btn:hover {
  background: var(--accent, #ff4e1b);
  border-color: var(--accent, #ff4e1b);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(255, 78, 27, 0.4);
}

.carousel-arrow-btn:active {
  transform: scale(0.94);
}

.philosophy-stage {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.philosophy-stage.switching {
  opacity: 0;
  transform: translateY(6px);
}

.quote-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 11px 'DM Mono', monospace;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
}

.quote-status-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.quote-banner-statement {
  margin: 0 0 32px;
  padding: 0;
  font-size: 29px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.9px;
  color: #fcfbfa;
  font-family: 'Manrope', -apple-system, sans-serif;
}

/* Kinetic Word Hover Pill Effect */
.kinetic-word {
  position: relative;
  display: inline-block;
  color: #ffffff;
  padding: 2px 8px;
  margin: 0 1px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kinetic-word.active-highlight {
  background: rgba(255, 78, 27, 0.18);
  border-color: rgba(255, 78, 27, 0.4);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 78, 27, 0.2);
}

.kinetic-word:hover {
  background: var(--accent, #ff4e1b);
  border-color: var(--accent, #ff4e1b);
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 78, 27, 0.4);
}

.kinetic-word::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px) scale(0.95);
  padding: 5px 12px;
  background: #1c1b1a;
  color: var(--accent, #ff4e1b);
  border: 1px solid rgba(255, 78, 27, 0.4);
  border-radius: 8px;
  font: 700 11px 'DM Mono', monospace;
  letter-spacing: 0.8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.kinetic-word:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.quote-banner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.quote-author-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 78, 27, 0.25), rgba(255, 78, 27, 0.08));
  border: 1px solid rgba(255, 78, 27, 0.35);
  color: var(--accent, #ff4e1b);
  display: grid;
  place-items: center;
  font: 800 13px 'DM Mono', monospace;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 78, 27, 0.15);
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font: 800 13px 'DM Mono', monospace;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.author-role {
  font-size: 12.5px;
  color: #888;
  font-weight: 600;
}

.quote-hover-hint {
  font: 700 11px 'DM Mono', monospace;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quote-hover-hint .hint-icon {
  color: var(--accent, #ff4e1b);
}

/* Article Reader Modal */
.article-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.article-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.article-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 13, 0.75);
  backdrop-filter: blur(10px);
  z-index: 0;
}

.article-modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  margin: auto;
}

.article-modal.active .article-modal-content {
  transform: translateY(0) scale(1);
}

.article-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e0da;
  background: #f8f6f4;
  color: #111;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.article-modal-close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Modal Header Meta Row */
.modal-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.modal-cat-tag {
  font: 700 10px 'DM Mono', monospace;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
}

.modal-readtime-tag {
  font: 600 12px 'Manrope', sans-serif;
  color: #888;
}

.modal-title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
  font-weight: 800;
  color: var(--ink);
}

/* Byline Row */
.modal-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 1px solid #f0ebe5;
  border-bottom: 1px solid #f0ebe5;
}

.modal-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b1b1b, #913d22);
  color: #fff;
  font: 800 13px 'Manrope', sans-serif;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.modal-author-name {
  display: block;
  font: 700 14px 'Manrope', sans-serif;
  color: var(--ink);
}

.modal-byline-date {
  display: block;
  font: 500 12px 'Manrope', sans-serif;
  color: #888;
  margin-top: 2px;
}

.modal-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
}

/* Rich Body Text */
.modal-body-text {
  color: #2a2a2a;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
}

.modal-body-text p {
  margin-bottom: 24px;
}

.modal-h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.25;
}

.modal-h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 28px 0 10px;
}

.modal-quote {
  margin: 28px 0;
  padding: 18px 24px;
  background: #faf7f4;
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-style: italic;
  color: #555;
  line-height: 1.75;
}

.modal-list {
  padding-left: 24px;
  margin-bottom: 24px;
}

.modal-list li {
  margin-bottom: 10px;
  line-height: 1.75;
  color: #333;
}

.modal-list li::marker {
  color: var(--accent);
  font-size: 14px;
}

.modal-body-text strong {
  font-weight: 700;
  color: var(--ink);
}

.modal-body-text em {
  font-style: italic;
  color: #555;
}

/* External Article CTA */
.modal-external-cta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #f0ebe5;
}

.modal-external-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font: 700 14px 'Manrope', sans-serif;
  transition: background 0.25s, transform 0.25s;
}

.modal-external-cta a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.modal-external-cta a b {
  display: grid;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
}

/* Dynamic Pagination Styling */
.journal-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.journal-pagination button {
  display: grid;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  place-items: center;
  background: #fff;
  border: 1px solid #ded8d3;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.journal-pagination button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.journal-pagination button.active {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.journal-pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 960px) {
  .spotlight-card {
    grid-template-columns: 1fr;
  }
  .spotlight-media {
    height: 280px;
  }
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journal-quote-banner {
    padding: 32px 24px;
  }
  .quote-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .quote-banner-text {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .collection-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-modal-content {
    padding: 28px 20px;
  }
}
