/* PS News Portal v3.0 - Layout "Prima Pagina" */

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;
}

/* FEATURED (APERTURA) */
.psnp-feature {
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}
.psnp-thumb-large {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}
.psnp-title-main {
  font-size: 32px;
  margin: 10px 0;
  line-height: 1.2;
}
.psnp-date {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}
.psnp-excerpt-main {
  font-size: 16px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

/* SECONDARIE */
.psnp-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px auto;
  max-width: 1100px;
}
.psnp-small {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.psnp-small:hover {
  transform: translateY(-4px);
}
.psnp-thumb {
  width: 100%;
  height: auto;
  display: block;
}
.psnp-title-small {
  font-size: 18px;
  margin: 15px;
  line-height: 1.3;
}

/* LISTA */
.psnp-list {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.psnp-list-item {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  transition: background 0.2s ease;
}
.psnp-list-item:hover {
  background: #f4f4f4;
}
.psnp-thumb-list {
  width: 120px;
  height: auto;
  border-radius: 4px;
  margin-right: 15px;
}
.psnp-title-list {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

/* FOOTER */
.psnp-footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
}
