﻿.npl-quick-grid,
.npl-card-grid,
.npl-story-grid,
.npl-city-grid,
.npl-footer__grid {
  display: grid;
  gap: 18px;
}

.npl-quick-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  padding: 18px 0 6px;
}

.npl-quick-link {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--npl-line);
  border-radius: var(--npl-radius);
  background: #fff;
  gap: 8px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.npl-quick-link__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--npl-red);
  font-size: 1.25rem;
}

.npl-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.npl-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: var(--npl-soft);
  padding: 0 14px;
  color: #41464d;
  font-size: 0.82rem;
  font-weight: 700;
}

.npl-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.npl-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.npl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(16, 20, 24, 0.11);
}

.npl-card__image {
  aspect-ratio: 16 / 10;
}

.npl-card__body {
  padding: 14px;
}

.npl-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 850;
}

.npl-video-card .npl-card__image::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: inset 10px 0 0 -4px #fff;
}

.npl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.npl-gallery__item {
  aspect-ratio: 1 / 0.78;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(16, 20, 24, 0.08);
}

.npl-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.npl-split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 28px;
}

.npl-story-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.npl-story-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: var(--npl-radius);
  color: #fff;
  background: #111;
  box-shadow: 0 10px 24px rgba(16, 20, 24, 0.14);
}

.npl-story-card__image {
  position: absolute;
  inset: 0;
  height: 100%;
}

.npl-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.9));
}

.npl-story-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 16px;
}

.npl-story-card__title {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 900;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.npl-category-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--npl-line);
  scrollbar-width: none;
}

.npl-category-strip::-webkit-scrollbar {
  display: none;
}

.npl-category-strip a {
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 0.9rem;
}

.npl-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.npl-list-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--npl-line);
}

.npl-list-card__image {
  aspect-ratio: 1.35 / 1;
  border-radius: 6px;
}

.npl-list-card__title {
  margin: 0 0 6px;
  font-size: 0.93rem;
  line-height: 1.35;
}

.npl-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--npl-line);
  border-radius: var(--npl-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 20, 24, 0.06);
}

.npl-newsletter form {
  display: flex;
  gap: 8px;
}

.npl-newsletter input[type="email"] {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--npl-line);
  border-radius: 6px;
  padding: 11px 12px;
}
