﻿.news-page {
  max-width: 1050px;
  margin: 0 auto;
  padding: 30px 16px;
}

.news-intro {
  text-align: center;
  margin-bottom: 28px;
}

.news-intro h2 {
  color: #004080;
  font-size: 34px;
  font-family: "Roboto", Arial, sans-serif;
  margin-bottom: 12px;
}

.news-intro p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.news-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 26px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.news-card h3 {
  color: #004080;
  font-size: 28px;
  margin-top: 0;
}

.revue-placeholder {
  background: #eef6ff;
  border-left: 5px solid #004080;
  padding: 16px;
  border-radius: 8px;
}

.tribute-list {
  display: grid;
  gap: 18px;
}

.tribute-item {
  background: #f8fbff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(0,64,128,0.12);
}

.tribute-item span {
  display: inline-block;
  background: #004080;
  color: white;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tribute-item h4 {
  color: #004080;
  font-size: 22px;
  margin: 0 0 10px;
}

.tribute-item p {
  font-size: 17px;
  line-height: 1.6;
}

.magazine-box {
  background: #eef6ff;
  border-left: 5px solid #004080;
  padding: 18px;
  border-radius: 10px;
  margin-top: 16px;
}

.magazine-box h4 {
  margin-top: 0;
  color: #004080;
  font-size: 22px;
}

.magazine-button {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 12px 18px;
  background: #004080;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.magazine-button:hover {
  background: #0066cc;
  color: white;
}

.magazine-button-secondary {
  background: #666;
}

.magazine-button-secondary:hover {
  background: #444;
}


/* =========================
   MAGAZINES
========================= */

.magazine-grid {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.magazine-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  background: #f8fbff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,64,128,0.12);
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.magazine-image {
  background: #dde8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.magazine-image img {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.magazine-content {
  padding: 24px 24px 24px 0;
}

.magazine-badge {
  display: inline-block;
  background: #004080;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.magazine-content h4 {
  margin: 0 0 12px;
  color: #004080;
  font-size: 30px;
  font-family: "Roboto", Arial, sans-serif;
}

.magazine-content p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
}

.magazine-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.magazine-button {
  display: inline-block;
  background: #004080;
  color: white;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.magazine-button:hover {
  background: #0066cc;
  color: white;
}

.magazine-button-secondary {
  background: #666;
}

.magazine-button-secondary:hover {
  background: #444;
}

@media (max-width: 768px) {

  .magazine-card {
    grid-template-columns: 1fr;
  }

  .magazine-image {
    padding-bottom: 0;
  }

  .magazine-content {
    padding: 20px;
  }

  .magazine-content h4 {
    font-size: 24px;
  }

  .magazine-content p {
    font-size: 17px;
  }

}

