.news-shell {
  background: #fefefe;
}

.news-shell a {
  text-decoration: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.news-home {
  padding-top: 40px;
}

.news-trending-section {
  border-bottom: 1px solid #dee2e6;
  background-color: #f5f5f5;
}

.news-trending-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  color: var(--slate-900);
  font-size: 16px;
}

.news-trending-bar span {
  flex-shrink: 0;
  padding: 8px 14px;
  background: var(--slate-900);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-trending-marquee {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.news-trending-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: newsTrendingScroll 34s linear infinite;
  will-change: transform;
}

.news-trending-marquee:hover .news-trending-track,
.news-trending-marquee:focus-within .news-trending-track {
  animation-play-state: paused;
}

.news-trending-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 30px;
  padding-right: 30px;
}

.news-trending-group a {
  position: relative;
  color: var(--gray-700);
  font-weight: 400;
  white-space: nowrap;
}

.news-trending-group a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d1d5db;
  transform: translateY(-50%);
}

.news-trending-group a:hover,
.news-trending-group a:focus {
  color: var(--bs-blue);
}

@keyframes newsTrendingScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.news-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(180px, 18vw, 230px));
  gap: 4px;
}

.news-card {
  position: relative;
  overflow: hidden;
}

.news-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 6px;
}

.news-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card-image,
.news-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--slate-900), #2563eb);
  font-weight: 900;
  text-transform: uppercase;
}

.news-card-media img {
  transition: transform 0.25s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-content {
  padding: 16px 0 0;
}

.news-category-badge {
  background: var(--slate-900);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
}

.news-category-badge:hover {
  color: #ffffff;
  background: var(--bs-blue);
}

.news-card-title {
  margin: 0;
  color: #212529;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
}

.news-card-title a {
  color: inherit;
}

.news-card-title a:hover {
  color: var(--bs-blue);
}

.news-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

.news-meta-views {
  color: #212529;
  font-weight: 600;
}

.news-card-excerpt {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.news-read-more {
  display: inline-flex;
  margin-top: 8px;
  margin-bottom: 4px;
  color: var(--bs-blue);
  font-weight: 700;
}

.news-read-more:hover {
  color: #0a58ca;
}

.news-card--hero-large,
.news-card--hero-small {
  min-height: 100%;
}

.news-card--hero-large {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}

.news-card--hero-small:nth-child(2) {
  grid-column: 3/span 2;
}

.news-card--hero-small:nth-child(n+5) {
  display: none;
}

.news-card--hero-large .news-card-media,
.news-card--hero-small .news-card-media {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 6px;
  overflow: hidden;
}

.news-card--hero-large .news-card-media::after,
.news-card--hero-small .news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 70%);
  pointer-events: none;
}

.news-card--hero-large .news-card-content,
.news-card--hero-small .news-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
}

.news-card--hero-large .news-card-title,
.news-card--hero-small .news-card-title,
.news-card--hero-large .news-post-meta,
.news-card--hero-small .news-post-meta,
.news-card--hero-large .news-meta-views,
.news-card--hero-small .news-meta-views {
  color: #ffffff;
}

.news-card--hero-large .news-card-title,
.news-card--hero-small .news-card-title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.news-card--hero-large .news-card-title {
  font-size: 24px;
}

.news-card--hero-small .news-card-title {
  font-size: 18px;
}

.news-body {
  padding: 40px 0;
}

.news-section {
  margin-bottom: 40px;
}

.news-classified-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #ffffff;
}

.news-classified-links-content {
  min-width: 0;
}

.news-classified-links h2 {
  margin: 0 0 4px;
  color: var(--slate-900);
  font-size: 17px;
  font-weight: 900;
}

.news-classified-links p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
}

.news-classified-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.news-classified-links-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--slate-900);
  font-size: 13px;
  font-weight: 800;
  background: #f8f9fa;
  transition: border-color 0.15s ease, filter 0.15s ease;
}

.news-classified-links-list a:hover,
.news-classified-links-list a:focus {
  border-color: currentColor;
  filter: brightness(0.97);
}

.news-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--bs-blue);
}

.news-section-heading h2 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  background: var(--bs-blue);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-dont-miss-section .news-section-heading {
  align-items: stretch;
  gap: 0;
  margin-bottom: 24px;
}

.news-dont-miss-section .news-section-heading h2 {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  font-size: 16px;
}

.news-section-heading h2 a {
  color: inherit;
}

.news-section-heading.is-green {
  border-bottom-color: var(--slate-900);
}

.news-section-heading.is-green h2 {
  background: var(--slate-900);
  color: #ffffff;
}

.news-section-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-width: 0;
  flex: 1 1 auto;
  overflow: visible;
}

.news-section-links::-webkit-scrollbar {
  display: none;
}

.news-section-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.news-section-links a:hover {
  color: var(--bs-blue);
}

.news-section-links a.is-active {
  color: var(--bs-blue);
}

.news-section-links a.is-active:hover {
  color: #0a58ca;
}

.news-more-wrapper {
  position: relative;
  flex: 0 0 auto;
  display: none;
}

.news-more-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  gap: 2px;
  border: 0;
  cursor: pointer;
  background-color: transparent;
}

.news-more-wrapper.has-active-item .news-more-toggle,
.news-more-toggle:hover {
  color: var(--bs-blue);
}

.news-more-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 20;
  display: none;
  min-width: 190px;
  padding: 7px 0;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12);
}

.news-more-wrapper.is-open .news-more-menu {
  display: block;
}

.news-more-menu a {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-height: 34px;
  padding: 7px 18px;
  color: #6b7280;
  font-weight: 600;
  text-align: right;
}

.news-more-menu a:hover,
.news-more-menu a.is-active {
  color: var(--bs-blue);
  background: #f9fafb;
}

.news-feature-list {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px 16px;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.news-feature-list.is-loading {
  opacity: 0.45;
  filter: grayscale(0.15);
  pointer-events: none;
}

.news-feature-list.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.04));
  animation: newsLoadingSweep 1s ease-in-out infinite;
}

@keyframes newsLoadingSweep {
  0% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(-20%);
  }
}
.news-feature-list .news-card--feature {
  grid-row: span 4;
}

.news-feature-list .news-empty-state {
  grid-column: 1/-1;
}

.news-card--compact {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.news-card--compact .news-card-media {
  aspect-ratio: 4/3;
}

.news-card--compact .news-card-content {
  padding-top: 0;
}

.news-card--compact .news-card-title {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.28;
}

.news-card--standard,
.news-card--related {
  height: 100%;
}

.news-card--standard .news-card-title,
.news-card--related .news-card-title {
  font-size: 20px;
}

.news-card--related .news-card-title {
  font-size: 17px;
}

.news-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.news-sidebar-box {
  margin-bottom: 40px;
}

.news-sidebar-box h2 {
  margin: 0 0 24px;
  padding-bottom: 0;
  border-bottom: 2px solid var(--slate-900);
  color: var(--slate-900);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 34px;
}

.news-sidebar-posts {
  display: grid;
  gap: 16px;
}

.news-sidebar-post {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 13px;
}

.news-sidebar-thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 6px;
}

.news-sidebar-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-sidebar-post h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
}

.news-sidebar-post h3 a {
  color: var(--slate-900);
}

.news-sidebar-post h3 a:hover {
  color: var(--bs-blue);
}

.news-sidebar-categories {
  display: grid;
  gap: 8px;
}

.news-sidebar-categories a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  border-bottom: 1px solid #ececec;
  color: var(--gray-700);
  font-weight: 500;
}

.news-sidebar-categories a:hover {
  color: var(--bs-blue);
}

.news-tag-cloud,
.news-empty-links,
.news-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-tag-cloud a,
.news-empty-links a,
.news-single-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 700;
  background-color: #ffffff;
}

.news-tag-cloud a:hover,
.news-empty-links a:hover,
.news-single-tags a:hover {
  color: var(--bs-blue);
  border-color: var(--bs-blue);
}

.news-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.news-search-field {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--slate-900);
  font-size: 15px;
}

.news-search-submit {
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--slate-900);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-search-submit:hover {
  background: var(--bs-blue);
}

.news-archive-header {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid #dee2e6;
  background-color: #f5f5f5;
}

.news-page-heading h1 {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  text-align: center;
}

.news-single-title {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  text-align: center;
}

.news-page-heading h1 {
  text-transform: uppercase;
}

.news-page-description {
  max-width: 760px;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.5;
  margin: 8px auto 0;
  text-align: center;
}

.news-page-search {
  max-width: 520px;
  margin-top: 18px;
}

.news-result-count {
  margin-bottom: 18px;
  color: #6b7280;
  font-weight: 700;
}

.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.filter-toolbar .filter-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-toolbar .filter-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-toolbar .form-select {
  width: auto;
}
.filter-toolbar .btn-filter {
  min-height: auto;
  white-space: nowrap;
}

.news-filter-toolbar--end {
  justify-content: flex-end;
}

.pagination-wrapper {
  margin-top: 16px;
}

.pagination-wrapper .pagination {
  display: block;
  margin: 0;
}

.pagination-wrapper .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 6px;
  color: #212529;
  font-weight: 400;
  text-decoration: none;
}

.pagination-wrapper a.page-numbers:hover,
.pagination-wrapper a.page-numbers:focus {
  color: var(--bs-blue);
  background-color: #e7f1ff;
}

.pagination-wrapper .page-numbers.current {
  color: #ffffff;
  background-color: var(--bs-blue);
  pointer-events: none;
}

.pagination-wrapper .page-numbers.dots {
  width: auto;
  min-width: 22px;
  color: #6b7280;
}

.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
  color: #212529;
}

.pagination-wrapper .news-pagination-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.pagination-wrapper .news-pagination-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.news-single {
  padding: 34px 0 56px;
}

.news-single-header {
  margin-bottom: 24px;
}

.news-single-categories {
  margin-bottom: 8px;
}

.news-single-meta-row .news-post-meta {
  justify-content: flex-end;
  margin-left: auto;
  text-align: right;
}

.news-single-title {
  text-align: left;
  margin-bottom: 8px;
}

.news-single-featured {
  margin: 24px 0 24px 0;
}

.news-single-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.news-single-featured figcaption {
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}

.news-single .news-single-content {
  font-size: 16px;
}

.news-single .news-single-content > * {
  margin-bottom: 16px;
}

.news-single .news-single-content *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-single .news-single-content * strong {
  font-weight: 700;
}

.news-single .news-single-content h1,
.news-single .news-single-content h2,
.news-single .news-single-content h3,
.news-single .news-single-content h4,
.news-single .news-single-content h5,
.news-single .news-single-content h6,
.news-single .news-single-content .h1,
.news-single .news-single-content .h2,
.news-single .news-single-content .h3,
.news-single .news-single-content .h4,
.news-single .news-single-content .h5,
.news-single .news-single-content .h6 {
  font-weight: 600;
  margin-bottom: 16px;
}

.news-single .news-single-content h1,
.news-single .news-single-content .h1 {
  font-size: 36px;
  line-height: 1.2;
}

.news-single .news-single-content h2,
.news-single .news-single-content .h2 {
  font-size: 28px;
  line-height: 1.2;
}

.news-single .news-single-content h2 + h3,
.news-single .news-single-content h2 + .h3,
.news-single .news-single-content h2 + h4,
.news-single .news-single-content h2 + .h4,
.news-single .news-single-content h2 + h5,
.news-single .news-single-content h2 + .h5,
.news-single .news-single-content h2 + h6,
.news-single .news-single-content h2 + .h6,
.news-single .news-single-content .h2 + h3,
.news-single .news-single-content .h2 + .h3,
.news-single .news-single-content .h2 + h4,
.news-single .news-single-content .h2 + .h4,
.news-single .news-single-content .h2 + h5,
.news-single .news-single-content .h2 + .h5,
.news-single .news-single-content .h2 + h6,
.news-single .news-single-content .h2 + .h6 {
  margin-top: 20px;
}

.news-single .news-single-content h3,
.news-single .news-single-content .h3 {
  font-size: 24px;
  line-height: 1.3;
}

.news-single .news-single-content h3 + h4,
.news-single .news-single-content h3 + .h4,
.news-single .news-single-content h3 + h5,
.news-single .news-single-content h3 + .h5,
.news-single .news-single-content h3 + h6,
.news-single .news-single-content h3 + .h6,
.news-single .news-single-content .h3 + h4,
.news-single .news-single-content .h3 + .h4,
.news-single .news-single-content .h3 + h5,
.news-single .news-single-content .h3 + .h5,
.news-single .news-single-content .h3 + h6,
.news-single .news-single-content .h3 + .h6 {
  margin-top: 20px;
}

.news-single .news-single-content h4,
.news-single .news-single-content .h4 {
  font-size: 20px;
  line-height: 1.4;
}

.news-single .news-single-content h4 + h5,
.news-single .news-single-content h4 + .h5,
.news-single .news-single-content h4 + h6,
.news-single .news-single-content h4 + .h6,
.news-single .news-single-content .h4 + h5,
.news-single .news-single-content .h4 + .h5,
.news-single .news-single-content .h4 + h6,
.news-single .news-single-content .h4 + .h6 {
  margin-top: 20px;
}

.news-single .news-single-content h5,
.news-single .news-single-content .h5 {
  font-size: 18px;
  line-height: 1.5;
}

.news-single .news-single-content h5 + h6,
.news-single .news-single-content h5 + .h6,
.news-single .news-single-content .h5 + h6,
.news-single .news-single-content .h5 + .h6 {
  margin-top: 20px;
}

.news-single .news-single-content h6,
.news-single .news-single-content .h6 {
  font-size: 16px;
  line-height: 1.5;
}

.news-single .news-single-content a {
  color: var(--bs-blue);
  text-decoration: underline;
}

.news-single .news-single-content ul li:not(:last-of-type),
.news-single .news-single-content ol li:not(:last-of-type) {
  margin-bottom: 8px;
}

.news-single .news-single-content ul {
  list-style-type: disc;
}

.news-single .news-single-content ol {
  list-style-type: decimal;
}

.news-single .news-single-content p + h2,
.news-single .news-single-content p + .h2,
.news-single .news-single-content p + h3,
.news-single .news-single-content p + .h3,
.news-single .news-single-content p + h4,
.news-single .news-single-content p + .h4,
.news-single .news-single-content p + h5,
.news-single .news-single-content p + .h5,
.news-single .news-single-content p + h6,
.news-single .news-single-content p + .h6,
.news-single .news-single-content ul + h2,
.news-single .news-single-content ul + .h2,
.news-single .news-single-content ul + h3,
.news-single .news-single-content ul + .h3,
.news-single .news-single-content ul + h4,
.news-single .news-single-content ul + .h4,
.news-single .news-single-content ul + h5,
.news-single .news-single-content ul + .h5,
.news-single .news-single-content ul + h6,
.news-single .news-single-content ul + .h6 {
  margin-top: 28px;
}

.news-single .news-single-content blockquote {
  padding: 12px 16px;
  border-left: 4px solid var(--bs-blue);
  font-style: italic;
  background: linear-gradient(to right, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
}

.news-single .news-single-content .wp-caption {
  max-width: 100%;
}

.news-single .news-single-content .wp-caption .wp-caption-text {
  margin-top: 4px;
  text-align: center;
  font-style: italic;
}

.news-single .news-single-content img {
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-single-tags {
  margin-top: 24px;
}

.news-single-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--slate-900);
  font-weight: 900;
}

.news-post-navigation {
  margin: 24px 0 40px 0;
}

.news-post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-post-navigation .nav-previous,
.news-post-navigation .nav-next {
  min-width: 0;
}

.news-post-navigation .nav-next {
  text-align: right;
}

.news-post-navigation a {
  display: block;
  padding: 16px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  color: #212529;
  background-color: #ffffff;
  height: 100%;
}

.news-post-navigation a:hover {
  border-color: var(--bs-blue);
  color: var(--bs-blue);
}

.news-post-navigation .nav-subtitle {
  display: block;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-post-navigation .nav-title {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.news-empty-state {
  padding: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.news-empty-state h2 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-weight: 900;
}

.news-empty-state p {
  color: #6b7280;
}

.news-empty-search {
  max-width: 520px;
  margin: 18px 0;
}

.page-content-entry {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 12px;
}

.page-content-title {
  margin-bottom: 22px;
  color: var(--slate-900);
  font-size: 36px;
  font-weight: 900;
}

#comments {
  margin: 0 auto !important;
}

#wpdcom {
  padding: 0 !important;
  margin: 0 !important;
}

#wpdcom .wpd-form-head {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#wpdcom .wpd-thread-list {
  padding-bottom: 0 !important;
}

@media (max-width: 991px) {
  .news-page-heading h1 {
    font-size: 28px;
  }
  .news-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .news-card--hero-large {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .news-card--hero-small:nth-child(2) {
    grid-column: auto;
  }
  .news-card--hero-small:nth-child(n+5) {
    display: block;
  }
  .news-card--hero-large .news-card-media,
  .news-card--hero-small .news-card-media {
    height: auto;
    min-height: 0;
  }
  .news-card--hero-large .news-card-media {
    aspect-ratio: 16/10;
  }
  .news-card--hero-small .news-card-media {
    aspect-ratio: 4/3;
  }
  .news-feature-list {
    grid-template-columns: 1fr;
  }
  .news-feature-list .news-card--feature {
    grid-row: auto;
  }
  .news-classified-links {
    align-items: flex-start;
    flex-direction: column;
  }
  .news-classified-links-list {
    justify-content: flex-start;
  }
  .news-sidebar {
    position: static;
  }
  body.archive .news-sidebar,
  body.search .news-sidebar {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .news-trending-bar {
    align-items: start;
    display: grid;
    gap: 10px;
  }
  .news-card--hero-large .news-card-title {
    font-size: 24px;
  }
  .news-card--hero-small .news-card-title {
    font-size: 17px;
  }
  .news-card--hero-large .news-card-content,
  .news-card--hero-small .news-card-content {
    padding: 16px;
  }
  .news-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .news-dont-miss-section .news-section-heading {
    align-items: stretch;
    flex-direction: row;
    gap: 0;
  }
  .news-section-links {
    width: 100%;
    padding-bottom: 4px;
  }
  .news-dont-miss-section .news-section-links {
    width: auto;
    padding-bottom: 0;
  }
  .news-single-title {
    font-size: 24px;
  }
  .news-post-navigation .nav-links {
    grid-template-columns: 1fr;
  }
  .news-post-navigation .nav-next {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .news-hero-grid {
    gap: 3px;
  }
  .news-card--hero-large {
    grid-column: 1/-1;
  }
  .news-card--compact,
  .news-sidebar-post {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }
  .news-card-title {
    font-size: 22px;
  }
  .news-card--standard .news-card-title,
  .news-card--related .news-card-title {
    font-size: 20px;
  }
  .news-card--compact .news-card-title {
    font-size: 16px;
  }
  .news-empty-state {
    padding: 24px;
  }
}
@media (max-width: 450px) {
  .news-page-heading h1 {
    font-size: 24px;
  }
}/*# sourceMappingURL=news.css.map */
