.pl-news {
  --pl-dark: #13160b;
  --pl-accent: #ff7300;
  --pl-lime: #baf120;
  --pl-paper: #f6f6f6;
  --pl-white: #ffffff;
  --pl-muted: #5c6356;

  position: relative;
  width: min(100%, 1680px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 2rem);
  border-radius: 24px;
  background:
    radial-gradient(1200px 400px at 0% 0%, rgba(186, 241, 32, 0.22) 0%, rgba(186, 241, 32, 0) 58%),
    linear-gradient(145deg, #ffffff 0%, var(--pl-paper) 100%);
  border: 1px solid rgba(19, 22, 11, 0.08);
  box-shadow: 0 14px 44px rgba(19, 22, 11, 0.08);
}

.pl-news__hero {
  margin-bottom: 1.25rem;
}

.pl-news__kicker {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--pl-accent);
}

.pl-news__title {
  margin: 0.1rem 0 0.35rem;
  color: var(--pl-dark);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}

.pl-news__intro {
  margin: 0;
  max-width: 58ch;
  color: var(--pl-muted);
}

.pl-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pl-card {
  min-width: 0;
}

.pl-card__link {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 18px;
  background: var(--pl-white);
  border: 1px solid rgba(19, 22, 11, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pl-card__link:hover,
.pl-card__link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 115, 0, 0.35);
  box-shadow: 0 14px 26px rgba(19, 22, 11, 0.14);
}

.pl-card__media {
  position: relative;
  aspect-ratio: var(--pl-image-ratio, 16/9);
  overflow: hidden;
  background: var(--pl-dark);
}

.pl-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(19, 22, 11, 0.88);
}

.pl-card__image--placeholder {
  background:
    linear-gradient(120deg, rgba(19, 22, 11, 0.92), rgba(19, 22, 11, 0.65)),
    repeating-linear-gradient(45deg, rgba(186, 241, 32, 0.2), rgba(186, 241, 32, 0.2) 14px, rgba(255, 115, 0, 0.2) 14px, rgba(255, 115, 0, 0.2) 28px);
}

.pl-card__orb {
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(186, 241, 32, 0.8), rgba(186, 241, 32, 0));
}

.pl-card__body {
  padding: 0.95rem 1rem 1rem;
}

.pl-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  color: var(--pl-muted);
  font-size: 0.78rem;
}

.pl-card__chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  color: var(--pl-dark);
  background: rgba(186, 241, 32, 0.42);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.65rem;
}

.pl-card__title {
  margin: 0 0 0.5rem;
  color: var(--pl-dark);
  font-size: 1.08rem;
  line-height: 1.28;
}

.pl-card__excerpt {
  margin: 0;
  color: var(--pl-muted);
  line-height: 1.48;
  font-size: 0.92rem;
}

.pl-card__cta {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--pl-accent);
}

.pl-news__pagination {
  margin-top: 1.4rem;
}

.pl-news__pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-news__pagination a,
.pl-news__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--pl-dark);
  background: var(--pl-white);
  border: 1px solid rgba(19, 22, 11, 0.12);
}

.pl-news__pagination .current {
  background: var(--pl-accent);
  color: var(--pl-white);
  border-color: transparent;
}

.pl-news__empty {
  margin: 0;
  color: var(--pl-muted);
}

@media (max-width: 768px) {
  .pl-news {
    padding: 1.1rem;
    border-radius: 18px;
  }
}

@media (min-width: 700px) {
  .pl-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pl-news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1360px) {
  .pl-news__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
