/* Crumbcast News Styles — standalone, no SCSS compilation needed */

/* ================================================================ */
/*  HERO                                                            */
/* ================================================================ */

.news-hero {
  position: relative;
  height: 420px;
  background: linear-gradient(135deg, #2a1f1a, #1a1410, #12100c);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Radial colour washes */
.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196,97,58,0.2), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,60,0.1), transparent 50%);
}

/* Viewfinder corners */
.news-hero::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 32px;
  bottom: 24px;
  left: 32px;
  z-index: 3;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='58.5,1.5 1.5,1.5 1.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") top left no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='1.5,1.5 58.5,1.5 58.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") top right no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='1.5,1.5 1.5,30.5 58.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") bottom left no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='32'%3E%3Cpolyline points='58.5,1.5 58.5,30.5 1.5,30.5' fill='none' stroke='white' stroke-opacity='0.15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") bottom right no-repeat;
}

.news-hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.035;
  mix-blend-mode: overlay;
}

.news-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 100%);
  filter: blur(3px);
  animation: focus-pull 0.5s ease-out 0.3s forwards;
}
.news-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 15%;
 
  filter: grayscale(1) contrast(1.4) brightness(0.7);
  mix-blend-mode: screen;
}
@keyframes focus-pull {
  to { filter: blur(0); }
}

.news-hero__content {
  position: relative;
  z-index: 4;
  padding: 60px;
  width: 100%;
}

.news-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--rust-light, #e0825a);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.news-hero .news-hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--chalk);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.news-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.news-hero__stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--chalk);
  display: block;
  line-height: 1;
}
.news-hero__stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  color: var(--dust);
  opacity: 0.6;
}

/* ================================================================ */
/*  SECTION LAYOUT                                                  */
/* ================================================================ */

.news-section {
  padding: 48px 60px 64px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.news-section__header {
  margin-bottom: 24px;
}
.news-section__header--grid {
  margin-top: 48px;
}

.news-section__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dust);
}


/* ================================================================ */
/*  FEATURED POST                                                   */
/* ================================================================ */

.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  color: inherit;
  text-decoration: none;
}

.news-featured__image {
  height: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-featured__image--no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink), #2a2a26);
}

/* Inset border on featured image */
.news-featured__image::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
/* Bottom gradient */
.news-featured__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* Category badges — top-left corner */
.news-featured__categories {
  position: absolute;
  top: 14px;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.news-featured__category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border-radius: 2px;
}
/* Film date stamp — bottom-right */
.news-featured__date-badge {
  position: absolute;
  bottom: 20px;
  right: 22px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 160, 50, 0.8);
  text-shadow: 0 0 6px rgba(255, 140, 30, 0.35);
}

.news-featured__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--ink);
}
.news-featured__excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mist);
  margin-bottom: 20px;
}
.news-featured__read-more {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--rust);
  font-weight: 500;
  transition: color 0.3s;
}
.news-featured:hover .news-featured__read-more {
  color: var(--rust-light, #e0825a);
}


/* ================================================================ */
/*  POST CARD GRID                                                  */
/* ================================================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.news-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  color: inherit;
  text-decoration: none;
}

.news-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-card__image--no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inset border on card image */
.news-card__image::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
/* Bottom gradient */
.news-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
}

/* Category badges — top-left corner */
.news-card__categories {
  position: absolute;
  top: 14px;
  left: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.news-card__category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border-radius: 2px;
}
/* Film date stamp — bottom-right */
.news-card__date-badge {
  position: absolute;
  bottom: 18px;
  right: 20px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 160, 50, 0.8);
  text-shadow: 0 0 6px rgba(255, 140, 30, 0.35);
}

.news-card__body {
  padding: 20px;
}
.news-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--ink);
}
.news-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mist);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ================================================================ */
/*  PAGINATION                                                      */
/* ================================================================ */

.news-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.news-pagination__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-pagination__nav a,
.news-pagination__nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.news-pagination__nav a {
  color: var(--ink);
  background: transparent;
}
.news-pagination__nav a:hover {
  background: var(--stone);
  color: var(--ink);
}
.news-pagination__nav span.current {
  background: var(--ink);
  color: var(--chalk);
}
.news-pagination__nav .prev,
.news-pagination__nav .next {
  letter-spacing: 0.5px;
}

/* Empty state */
.news-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--mist);
  font-size: 15px;
}


/* ================================================================ */
/*  SINGLE POST                                                     */
/* ================================================================ */

.news-single {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  width: 100%;
}

.news-single__back {
  display: inline-block;
  font-size: 13px;
  color: var(--mist);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.news-single__back:hover {
  color: var(--ink);
}

.news-single__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.news-single__date {
  margin-left: 8px;
}
.news-single__category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border-radius: 2px;
  text-decoration: none;
}
.news-single__category:hover {
  color: white;
  opacity: 0.85;
}
.news-single__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mist);
  letter-spacing: 0.5px;
}

.news-single__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 32px;
}

.news-single__featured-image {
  margin: 0 -60px 40px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.news-single__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single__content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.news-single__content p {
  margin-bottom: 1.5em;
}
.news-single__content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.75em;
  color: var(--ink);
}
.news-single__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: var(--ink);
}
.news-single__content blockquote {
  border-left: 3px solid var(--rust);
  padding: 4px 0 4px 24px;
  margin: 2em 0;
  font-style: italic;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.7;
}
.news-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.news-single__content a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.news-single__content a:hover {
  color: var(--rust-light, #e0825a);
}

/* Tags */
.news-single__tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--dust);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-single__tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--mist);
  background: var(--stone);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.news-single__tag:hover {
  background: var(--dust);
  color: var(--ink);
}

/* Comments */
.news-single__comments {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dust);
}
.news-single__comments .comments-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.news-single__comments .comment-list {
  list-style: none;
  padding: 0;
}
.news-single__comments .comment-list .comment {
  padding: 20px 0;
  border-bottom: 1px solid var(--stone);
}
.news-single__comments .comment-list .comment:last-child {
  border-bottom: none;
}
.news-single__comments .comment-list .children {
  list-style: none;
  padding-left: 32px;
  margin: 0;
}
.news-single__comments .comment-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.news-single__comments .comment-author img {
  border-radius: 50%;
  margin-right: 10px;
}
.news-single__comments .comment-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.news-single__comments .comment-meta a {
  color: var(--mist);
  text-decoration: none;
}
.news-single__comments .comment-meta a:hover {
  color: var(--rust);
}
.news-single__comments .comment-content {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}
.news-single__comments .comment-content p:last-child {
  margin-bottom: 0;
}
.news-single__comments .reply a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
}
.news-single__comments .reply a:hover {
  color: var(--rust-light, #e0825a);
}

/* Comment confirmation */
.news-single__comments .comment-confirmation {
  background: var(--stone);
  border-left: 3px solid var(--sage);
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 0 3px 3px 0;
}
.news-single__comments .comment-confirmation p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}

/* Comment form */
.news-single__comments #respond {
  margin-top: 32px;
}
.news-single__comments #respond .comment-reply-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.news-single__comments #respond .comment-reply-title small a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  margin-left: 12px;
}
.news-single__comments #respond .form-control {
  border: 1px solid var(--dust);
  border-radius: 3px;
  font-size: 14px;
  padding: 10px 14px;
  background: var(--chalk);
  color: var(--ink);
  transition: border-color 0.2s;
}
.news-single__comments #respond .form-control:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 2px rgba(196,97,58,0.15);
  outline: none;
}
.news-single__comments #respond #commentsubmit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--chalk);
  border: none;
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
.news-single__comments #respond #commentsubmit:hover {
  background: #2a2a26;
}
.news-single__comments .no-comments {
  font-size: 14px;
  color: var(--mist);
  background: var(--stone);
  border: none;
  border-radius: 3px;
  padding: 12px 16px;
}

/* Post navigation */
.news-single__nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dust);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.news-single__nav-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.news-single__nav-link:hover {
  color: inherit;
}
.news-single__nav-link--next {
  text-align: right;
}
.news-single__nav-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
  display: block;
}
.news-single__nav-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.2s;
}
.news-single__nav-link:hover .news-single__nav-title {
  color: var(--rust);
}


/* ================================================================ */
/*  NEWS LAYOUT (content + sidebar)                                  */
/* ================================================================ */

.news-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 60px 64px;
  width: 100%;
  box-sizing: border-box;
}

/* When news-section is inside the layout, remove its own spacing */
.news-layout > .news-section {
  padding: 0;
  max-width: none;
  margin: 0;
}

/* When news-single is inside the layout, let it fill the column */
.news-layout > .news-single {
  max-width: none;
  margin: 0;
  padding: 0 0 80px;
}
.news-layout > .news-single .news-single__featured-image {
  margin-left: 0;
  margin-right: 0;
}


/* ================================================================ */
/*  ARCHIVE HEADER                                                   */
/* ================================================================ */

.news-archive-header {
  background: linear-gradient(135deg, #2a1f1a, #1a1410);
  padding: 48px 60px 40px;
  position: relative;
  overflow: hidden;
}
.news-archive-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196,97,58,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,160,60,0.08), transparent 50%);
}
.news-archive-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.news-archive-header__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--chalk);
  margin: 0;
  line-height: 1.2;
}
.news-archive-header__desc {
  font-size: 14px;
  color: var(--dust);
  opacity: 0.7;
  margin: 8px 0 0;
}


/* ================================================================ */
/*  SIDEBAR                                                          */
/* ================================================================ */

.news-sidebar {
  padding-top: 8px;
}

.news-sidebar__section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--dust);
}
.news-sidebar__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-sidebar__heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 14px;
}

/* Search */
.news-sidebar__search {
  display: flex;
}
.news-sidebar__search-input {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--dust);
  border-right: none;
  border-radius: 3px 0 0 3px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.news-sidebar__search-input:focus {
  border-color: var(--rust);
}
.news-sidebar__search-input::placeholder {
  color: var(--dust);
}
.news-sidebar__search-btn {
  padding: 8px 12px;
  background: var(--ink);
  color: var(--chalk);
  border: 1px solid var(--ink);
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.news-sidebar__search-btn:hover {
  background: #2a2a26;
}

/* Lists (recent posts, recent comments, archives) */
.news-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-sidebar__list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--stone);
  font-size: 13px;
  line-height: 1.4;
}
.news-sidebar__list li:last-child {
  border-bottom: none;
}
.news-sidebar__list a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.news-sidebar__list a:hover {
  color: var(--rust);
}

.news-sidebar__date {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mist);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* Comments list */
.news-sidebar__comment-author {
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
}
.news-sidebar__list--comments li {
  font-size: 12px;
  color: var(--mist);
}

/* Categories */
.news-sidebar__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-sidebar__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.news-sidebar__category:hover {
  background: var(--stone);
}
.news-sidebar__category-count {
  font-size: 10px;
  opacity: 0.5;
}


/* ================================================================ */
/*  SEARCH                                                           */
/* ================================================================ */

.search-empty {
  text-align: center;
  padding: 80px 20px;
}
.search-empty__icon {
  margin-bottom: 20px;
  opacity: 0.6;
}
.search-empty__text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}
.search-empty__hint {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 24px;
}
.search-empty__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--rust);
  text-decoration: none;
  transition: color 0.2s;
}
.search-empty__link:hover {
  color: var(--rust-light, #e0825a);
}

.search-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}


/* ================================================================ */
/*  RESPONSIVE                                                      */
/* ================================================================ */

@media (max-width: 992px) {
  .news-hero {
    height: 280px;
  }
  .news-hero__photo img {
    object-position: 50% 35%;
  }
  .news-hero::after {
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
  .news-hero__content {
    padding: 24px 16px 24px 27px;
  }
  .news-hero .news-hero__title {
    font-size: 36px;
  }
  .news-hero__stats {
    gap: 20px;
    margin-top: 16px;
  }
  .news-hero__stat-value {
    font-size: 20px;
  }
  .news-section {
    padding: 24px 16px 48px;
  }

  .news-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px 48px;
    gap: 32px;
  }
  .news-archive-header {
    padding: 32px 24px 28px;
  }
  .news-archive-header__title {
    font-size: 28px;
  }

  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured__image {
    min-height: 220px;
  }
  .news-featured__body {
    padding: 24px 20px;
  }
  .news-featured__title {
    font-size: 24px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-card__image {
    height: 200px;
  }
  .news-card__title {
    font-size: 18px;
  }

  .news-single {
    padding: 32px 16px 64px;
  }
  .news-single__title {
    font-size: 32px;
  }
  .news-single__featured-image {
    margin-left: 0;
    margin-right: 0;
  }
  .news-single__content {
    font-size: 16px;
  }
  .news-single__nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-single__nav-link--next {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .news-single__title {
    font-size: 28px;
  }
}
