/**
 * Styles pour le bloc d'actualités du site GUDE-PME
 * Basé sur le design fourni
 */

/* Section principale des actualités */
.gude-news-section {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

.gude-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* En-tête de la section actualités */
.gude-news-header-wrapper {
  margin-bottom: 2.5rem;
  position: relative;
}

.gude-news-header-bar {
  width: 75px;
  height: 6px;
  background-color: #e67e22;
  margin-bottom: 1rem;
}

/* Titre de la section actualités */
.gude-news-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #e67e22;
  font-weight: 700;
}

/* Style spécifique pour le titre "Notre actualité" */
.news-title {
  font-size: 2.5rem !important;
  color: black;
  font-weight: 800;
}

.gude-news-description {
  color: #718096;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 40vw;
}

/* Grille d'actualités */
.gude-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Carte d'actualité */
.gude-news-card {
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gude-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gude-news-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

/* Catégorie d'actualité */
.gude-news-category {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #718096;
  margin-bottom: 1rem;
}

.gude-news-category .field__label {
  display: none;
}

.gude-news-category .field__item {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #718096;
}

/* Contenu de l'actualité */
.gude-news-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Titre de l'actualité */
.gude-news-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.gude-news-card .gude-news-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gude-news-card .gude-news-title a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.gude-news-card .gude-news-title a:hover {
  color: #d35400;
}

/* Date de l'actualité */
.gude-news-date {
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* Description de l'actualité */
.gude-news-description {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.gude-news-card .gude-news-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.gude-news-description .field__label {
  display: none;
}

.gude-news-description .field__item {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Bouton Lire la suite */
.gude-news-read-more {
  margin-top: auto;
  text-align: right;
}

.gude-news-read-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a202c;
  transition: color 0.2s ease;
}

.gude-news-read-more a:hover {
  color: #e67e22;
}

.gude-news-read-more svg {
  width: 20px;
  height: 20px;
}

/* Pagination */
.gude-news-pager {
  margin-top: 3rem;
  text-align: center;
}

.gude-news-pager .pager__item {
  display: inline-block;
  margin: 0 0.25rem;
}

.gude-news-pager .pager__item a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: white;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gude-news-pager .pager__item--active a,
.gude-news-pager .pager__item a:hover {
  background-color: #e67e22;
  color: white;
}

/* Responsive */
@media (max-width: 1200px) {
  .gude-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gude-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gude-news-description {
    max-width: 80vw;
  }
}

@media (max-width: 768px) {
  .gude-news-grid {
    grid-template-columns: 1fr;
  }

  .gude-news-title {
    font-size: 2rem;
  }
}

/* Suppression des éléments inutiles */
.gude-news-card .field--name-field-contenu {
  display: none;
}

/* Suppression des marges par défaut */
.gude-news-card .field {
  margin: 0;
}

/* Masquer les labels des champs */
.gude-news-description .field__label,
.gude-news-category .field__label {
  display: none;
}

/* Ajustements spécifiques pour correspondre au design */
.gude-news-section {
  background-color: #f5f5f5;
  padding: 3rem 0;
}

.gude-news-header-bar {
  background-color: #e67e22;
}

.gude-news-card {
  background-color: #ffffff;
}

.gude-news-card .gude-news-title a {
  color: #e67e22;
  font-weight: 600;
}
