/* In the Press: Links Row */
.nv-press-links-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 10px;
  justify-items: center;
  align-items: center;
  background-color: #4B6653;
  padding: 50px;
}

.nvpl-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #f0ebe1;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nvpl-btn:hover,
.nvpl-btn:focus-visible {
  border-color: #f0ebe1;
  background-color: rgba(240, 235, 225, 0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.nvpl-ico {
  width: 80px;
  height: 80px;
  display: block;
  color: #f0ebe1;
}

.nvpl-text {
  color: #f0ebe1;
  font-size: 1.3rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .nv-press-links-row { grid-template-columns: repeat(5, 1fr); gap: 28px; }
  .nvpl-ico { width: 50px; height: 50px; }
}

@media (max-width: 900px) {
  .nv-press-links-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .nv-press-links-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

