#nrt-blog-posts {
  padding: 70px 0;
  background-color: #f6f6f6;
}

@media screen and (max-width: 900px) {
  #nrt-blog-posts {
    padding: 40px 0;
  }
}

.nrt-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nrt-blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.nrt-blog-header h2 {
  margin-bottom: 20px;
  color: #000;
}

.nrt-blog-subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #4b5563;
}

.nrt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .nrt-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .nrt-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.nrt-blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nrt-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nrt-blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #e5e7eb;
}

.nrt-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nrt-blog-image a:hover img {
  transform: scale(1.05);
}

.nrt-blog-content {
  padding: 25px;
}

.nrt-blog-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.nrt-blog-title {
  margin-bottom: 12px;
  padding-bottom: 0;
}

.nrt-blog-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nrt-blog-title a:hover {
  color: #d3232b;
}

.nrt-blog-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  padding-bottom: 0;
}

.nrt-blog-footer {
  text-align: center;
  margin-top: 40px;
}

.nrt-blog-link {
  display: inline-block;
  padding: 12px 32px;
  background-color: #d3232b;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.nrt-blog-link:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}

.nrt-archive-container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1080px) {
  .nrt-archive-container {
    padding: 0 64px;
  }
}

.nrt-archive-header {
  text-align: center;
  padding: 40px 0;
}

.nrt-archive-header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.nrt-archive-icon {
  width: 48px;
  height: 48px;
}

@media screen and (min-width: 768px) {
  .nrt-archive-icon {
    width: 56px;
    height: 56px;
  }
}

.nrt-archive-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .nrt-archive-title {
    font-size: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .nrt-archive-title {
    font-size: 30px;
  }
}

.nrt-archive-subtitle {
  font-size: 14px;
  color: #d3232b;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .nrt-archive-subtitle {
    font-size: 16px;
  }
}

.nrt-archive-page-title {
  font-family: league-gothic;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 20px;
  color: #111827;
}

@media screen and (min-width: 768px) {
  .nrt-archive-page-title {
    font-size: 36px;
  }
}

@media screen and (min-width: 1024px) {
  .nrt-archive-page-title {
    font-size: 48px;
  }
}

.nrt-archive-description {
  font-size: 18px;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.nrt-archive-count {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.nrt-search-results {
  text-align: center;
  padding: 40px 0 20px;
}

@media screen and (min-width: 768px) {
  .nrt-search-results {
    padding: 60px 0 30px;
  }
}

.nrt-clear-search {
  text-align: center;
  margin-top: 20px;
}

.nrt-clear-search-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nrt-clear-search-link:hover {
  color: #d3232b;
}

.nrt-clear-search-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.nrt-browse-categories {
  margin-bottom: 32px;
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .nrt-browse-categories {
    margin-bottom: 48px;
  }
}

@media screen and (min-width: 1080px) {
  .nrt-browse-categories {
    padding: 0 64px;
  }
}

@media screen and (min-width: 768px) {
  .nrt-browse-categories {
    margin-bottom: 30px;
  }
}

.nrt-browse-categories-inner {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .nrt-browse-categories-inner {
    padding: 24px;
  }
}

.nrt-browse-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 15px 0;
}

.nrt-category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .nrt-category-buttons {
    gap: 12px;
  }
}

.nrt-category-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  background-color: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
}

.nrt-category-button:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}

.nrt-category-button-active {
  background-color: #d3232b;
  color: #fff;
  border-color: #d3232b;
}

.nrt-category-button-active:hover {
  background-color: #b91c1c;
  color: #fff;
}

.nrt-category-count {
  margin-left: 4px;
  font-size: 12px;
  opacity: 0.75;
}

.nrt-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .nrt-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media screen and (min-width: 1024px) {
  .nrt-posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .nrt-posts-grid {
    padding: 0 64px;
  }
}

.nrt-post-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.nrt-post-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.nrt-post-image-wrapper {
  width: 100%;
  height: 256px;
  overflow: hidden;
  background-color: #e5e7eb;
}

.nrt-post-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.nrt-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.nrt-post-card:hover .nrt-post-image {
  transform: scale(1.05);
}

.nrt-post-content {
  padding: 16px;
}

@media screen and (min-width: 768px) {
  .nrt-post-content {
    padding: 24px;
  }
}

.nrt-post-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.nrt-post-title-link {
  color: #111827;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nrt-post-title-link:hover {
  color: #d3232b;
}

.nrt-post-excerpt {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nrt-post-read-more {
  display: inline-flex;
  align-items: center;
  color: #d3232b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nrt-post-read-more:hover {
  color: #b91c1c;
}

.nrt-read-more-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.nrt-post-read-more:hover .nrt-read-more-icon {
  transform: translateX(4px);
}

.nrt-pagination-wrapper {
  max-width: 1640px;
  margin: 32px auto 48px;
  padding: 0 20px;
}

@media screen and (min-width: 1080px) {
  .nrt-pagination-wrapper {
    padding: 0 64px;
  }
}

.nrt-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nrt-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  color: #374151;
  background-color: #fff;
  border: 1px solid #d1d5db;
  min-width: 40px;
  height: 40px;
}

.nrt-pagination-link:hover {
  background-color: #f3f4f6;
  color: #d3232b;
  border-color: #d3232b;
}

.nrt-pagination-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  color: #fff;
  background-color: #d3232b;
  border: 1px solid #d3232b;
  min-width: 40px;
  height: 40px;
}

.nrt-pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  min-width: 40px;
  height: 40px;
}

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

.nrt-no-results {
  text-align: center;
  padding: 48px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nrt-no-results-content {
  max-width: 448px;
  margin: 0 auto;
}

.nrt-no-results-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: #9ca3af;
}

.nrt-no-results-title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.nrt-no-results-text {
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.6;
}

.nrt-no-results-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

@media screen and (min-width: 640px) {
  .nrt-no-results-actions {
    flex-direction: row;
  }
}

.nrt-button-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #d3232b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.nrt-button-primary:hover {
  background-color: #b91c1c;
}

.nrt-button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #f3f4f6;
  color: #374151;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.nrt-button-secondary:hover {
  background-color: #e5e7eb;
}

/*# sourceMappingURL=blog-listing.css.map */