/*
CTC Separate Stylesheet
Updated: 2025-07-22 20:52:09
Theme Name: NGV Child
Template: NGV
Author: NGV
Author URI: http://NGV.ca/
Description: Theme Wordpress
Version: 1.0.1753217529
*/
/* ———————— Grid for blog page ———————— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* space between rows and columns */
}

/* movile version, 1 column */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Command: images fill the space */
.blog-item img {
  width: 100%;
  height: auto;
  display: block;
}
/* Social media icons taille */
.social-icons a,
.blog-social a {
  font-size: 20px !important;  /* Ici tu fais la décision de la taille */
  width: auto !important;
  height: auto !important;
}

/* Si le plugin se serve d'une autre selecteur, modifier-le; exemple: */
.widget_share a {
  font-size: 18px !important;
}

.single .post-single h1 {
  text-align: center;
}


.post-single {
  max-width: 800px;           
  margin: 60px auto;          
  padding: 20px 0;            
  border-top: 2px solid #ccc; 
  border-bottom: 2px solid #ccc; 
}


.post-single_thumb {
  margin-bottom: 30px;
}
.post-single_title {
  text-align: center;
  margin: 0 0 10px;
}
.post-single_meta {
  text-align: center;
  color: #666;
  font-size: .9rem;
  margin-bottom: 30px;
}
.post-single_content {
  line-height: 1.7;
  font-size: 1rem;
  padding: 0 20px; 
}
