.news-section-container {
  background: none;
  padding: 120px 0;
}

.news-section-container .text-wrapper {
  width: 880px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.nwl__filters-wrap {
  margin-bottom: 2rem;
  display: none;
  justify-content: center;
}

.nwl__filter {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 8px 16px;
  cursor: pointer;
  line-height: 1;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
  border-radius: 3px;
}

.nwl__filter:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.nwl__filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* News List Container */
.nwl__list {
  margin-bottom: 3rem;
}

/* Loader */
.nwl__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Fallback / empty */
.nwl__fallback-container {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nwl__fallback {
  padding: 4rem 2rem;
  text-align: center;
}

.nwl__fallback p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.65;
  line-height: 1.8;
}

/* Load more button wrapper */
.nwl__more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Button styles */
.btn-primary {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 12px 32px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  transition: all 0.22s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
}

@media screen and (max-width: 960px) {
  .news-section-container {
    padding: 80px 0;
  }

  .news-section-container .text-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
  }

  .nwl__filters-wrap {
    margin-bottom: 1.5rem;
  }

  .nwl__filter {
    font-size: 0.6rem;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 640px) {
  .news-section-container {
    padding: 60px 0;
  }

  .news-section-container .text-wrapper {
    width: 100%;
    padding: 0 20px;
  }

  .nwl__filters-wrap {
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .nwl__filter {
    font-size: 0.55rem;
    padding: 6px 10px;
    flex: 0 1 auto;
  }

  .btn-primary {
    font-size: 0.8rem;
    padding: 10px 24px;
  }
}
