/* PS News Portal v2.0 – Layout giornale */

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fdfdfb;
  color: #000;
}

/* HEADER */
.psnp-header {
  text-align: center;
  padding: 30px 0;
  border-bottom: 2px solid #0b1f3a;
}

.psnp-logo {
  max-width: 260px;
  margin-bottom: 10px;
}

.psnp-header h2 {
  font-size: 20px;
  color: #000;
  margin: 0;
}

/* CONTAINER GRID */
.psnp-container.layout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}

/* CONTAINER LIST */
.psnp-container.layout-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
}

/* CONTAINER CARDS */
.psnp-container.layout-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 30px;
}

/* ARTICLE */
.psnp-article {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.psnp-article:hover {
  transform: translateY(-4px);
}

.psnp-thumb {
  width: 100%;
  height: auto;
  display: block;
}

.psnp-title {
  font-size: 18px;
  margin: 15px;
}

.psnp-date {
  display: block;
  margin: 0 15px;
  font-size: 13px;
  color: #777;
}

.psnp-excerpt {
  font-size: 14px;
  margin: 10px 15px 15px;
  color: #333;
}

/* FOOTER */
.psnp-footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
}
