@media screen and (max-width: 768px) {
  .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
    padding: 0 1rem;
    height: 100vh !important;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
  }

  .hero-content div {
    width: 100%;
    padding-top: 53vh;
    margin-top: 0vh;
    height: fit-content;
  }

  .hero-title-index {
    color: white;
    text-transform: uppercase;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.587);
  }

  .hero-content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.587);
  }

  .hero-btn:hover {
    opacity: 0.9;
  }

  /* Featured article */

  .featured-section {
    padding: 4rem 0;
    background-color: var(--white);
  }

  .featured-container {
    display: block;
    gap: 2rem;
  }

  .featured-image {
    height: 260px;
    width: 100%;
  }

  .featured-image img {
    object-fit: cover;
  }

  .featured-content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .featured-badge {
    margin-top: 2rem;
  }

  .featured-title {
    font-size: 1.34rem;
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 1rem;
  }

  .featured-text {
    color: var(--gray-medium);
    margin-bottom: 1rem;
  }

  /* Themes section */
  .themes-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
  }

  .themes-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .themes-title {
    font-size: 1.34rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .themes-subtitle {
    color: var(--gray-medium);
    max-width: 42rem;
    margin: 0 auto;
  }

  .themes-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .theme-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
  }

  .theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .theme-card-content {
    padding: 1.5rem;
  }

  .theme-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(36, 114, 74, 0.1);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
  }

  .theme-card:hover .theme-icon {
    background-color: var(--green-dark);
    color: var(--white);
  }

  .theme-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .theme-card-text {
    color: var(--gray-medium);
    margin-bottom: 0rem;
    font-size: 1rem;
  }

  .theme-explore {
    display: inline-flex;
    align-items: center;
    color: var(--green-dark);
    font-weight: 500;
  }

  .theme-explore:hover {
    text-decoration: underline;
  }

  .theme-explore i {
    margin-left: 0.5rem;
  }

  .themes-button {
    display: inline-block;
    background-color: var(--white);
    border: 1px solid var(--green-dark);
    color: var(--green-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
    margin-top: 2.5rem;
    text-align: center;
  }

  .themes-button:hover {
    background-color: var(--green-dark);
    color: var(--white);
  }

  .text-center {
    text-align: center;
  }

  /*Nos projet phares*/
  .realisations-section {
    background-image: url("../media/background/2.png");
    /* background-color: var(--beige);*/
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 4rem 1rem 2rem;
  }

  #nos_projets,
  #themes {
    scroll-margin-top: 50px;
  }
  #vision-message {
    scroll-margin-top: 134px;
  }

  /* Gallery section */
  .gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
  }

  .gallery-item {
    position: relative;
    height: fit-content;
  }

  .gallery-caption {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--beige);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(36, 114, 74, 0.18);
    padding: 20px;
    font-size: 0.9rem;
    text-align: center;
    transform: translateY(0%);
    transition: var(--transition);
    border-radius: 17px;
    height: fit-content;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gray-dark);
  }

  .logo_text-gallery img {
    border: white 2px solid;
  }
  .gallery-caption h3 {
    font-weight: 900;
    margin-bottom: 0.2rem;
    padding-right: 0px;
    color: var(--green-dark);
    margin-bottom: 10px;
    padding: 0 5px 1px 5px;
    width: fit-content;
    margin: 5px auto 5px auto;
    text-transform: uppercase;
    text-align: center !important;
  }

  /* Articles section */
  .articles-section {
    padding: 4rem 0px;
    background-color: var(--white);
    margin: 0;
    width: 100%;
  }

  .articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .articles-title {
    font-size: 1.875rem;
    font-weight: 700;
  }

  .articles-nav {
    display: flex;
    gap: 0.5rem;
  }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-bottom: 0px !important;
    height: fit-content;
  }

  .nav-button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    transition: var(--transition);
  }

  .nav-button:hover {
    border-color: var(--green-dark);
    color: var(--green-dark);
  }

  .article-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin: 0;
    box-sizing: border-box;
  }

  .article-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .article-image {
    position: relative;
    height: 10rem;
  }

  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .article-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--green-dark);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
  }

  .badge-red {
    background-color: var(--red-bright);
    color: white;
  }

  .badge-beige {
    background-color: var(--beige);
    color: var(--green-dark);
  }

  .badge-brick {
    background-color: var(--red-brick);
    color: white;
  }

  .badge-green {
    background-color: var(--green-dark);
    color: white;
  }

  .badge-dark {
    background-color: var(--gray-dark);
    color: white;
  }

  .other-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
  }

  .mt-20 {
    margin-top: 4rem;
  }

  .mt-10 {
    margin-top: 2rem;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-title {
    font-size: 1.16rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .article-text {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .article-text span {
    margin-bottom: 100px !important;
  }

  .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .article-author {
    display: flex;
    align-items: center;
  }

  .article-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    overflow: hidden;
    margin-right: 0.5rem;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.135);
  }

  .article-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    object-fit: cover;
  }

  .article-author-name {
    font-size: 0.875rem;
    color: var(--gray-light);
  }

  .article-date {
    font-size: 0.875rem;
    color: var(--gray-light);
  }

  .articles-button {
    display: inline-block;
    background-color: var(--green-dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
    margin-top: 2.5rem;
    text-align: center;
  }

  .articles-button:hover {
    opacity: 0.9;
  }

  /* Tribune section */
  .tribune-section {
    padding: 4rem 0;
    background-image: url("../media/background/2.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .tribune-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .tribune-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .tribune-subtitle {
    color: var(--gray-medium);
    max-width: 42rem;
    margin: 0 auto;
  }

  .tribune-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .tribune-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .pd-add {
    padding: 0 1rem;
  }

  /* Contribution form */
  .contribution-form {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .contribution-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .contribution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .contribution-subtitle {
    color: var(--gray-medium);
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    display: block;
    color: var(--gray-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--beige);
    border-radius: 0.25rem;
    outline: none;
  }

  .form-input:focus {
    border-color: var(--green-dark);
  }

  .form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--beige);
    border-radius: 0.25rem;
    outline: none;
    min-height: 9rem;
  }

  .form-textarea:focus {
    border-color: var(--green-dark);
  }

  .form-submit {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }

  .form-submit:hover {
    opacity: 0.9;
  }

  /* Newsletter section */
  .newsletter-section {
    padding: 4rem 0;
    background-color: var(--white);
    margin: 0;
  }
  .mtw-20 {
    margin-top: -30px;
    background-color: var(--beige);
  }
  .newsletter-card {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(
      85deg,
      var(--red-bright),
      var(--green-dark),
      var(--beige)
    );
    padding: 20px;
    background-size: 200% auto;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .newsletter-content {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .newsletter-image {
    width: 100% !important;
    position: relative;
    height: fit-content;
    border-radius: 10px;
    background-color: rgb(1, 126, 188);
    display: flex;
    align-items: center;
  }

  .newsletter-image img {
    position: relative;
    inset: 0;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-top: -20px;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
  }

  .newsletter-text {
    padding: 2rem 0;
    width: 100% !important;
  }

  .newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    color: var(--gray-dark);
  }

  .newsletter-input:focus {
    box-shadow: 0 0 0 2px var(--white);
  }

  .newsletter-button {
    background-color: var(--white);
    color: var(--green-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }

  .newsletter-button:hover {
    opacity: 0.9;
    color: var(--white);
    background-color: var(--green-dark);
    transition: var(--transition);
  }

  .newsletter-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 1rem;
  }

  /* .hero {
    height: 50vh;
  }
*/

  .newsletter-image {
    width: 33.333333%;
    height: auto;
  }

  .newsletter-text {
    width: 66.666667%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .featured-container {
    flex-direction: row;
  }

  /*PAGE PROFILE*/
  /*PAGE PROFILE*/
  /*PAGE PROFILE*/
  .bio {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 0rem 1rem 2rem;
    background-color: white;
    grid-gap: 0px;
    position: relative;
    margin-top: 0px;
  }

  .bio .img_bio {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .img_bio_frame {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
  }

  .img_bio_frame img {
    width: 100%;
    border-radius: 20px;
  }

  .img_bio_frame img:nth-child(2) {
    width: 100%;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .bio .img_bio #im-mt {
    margin-top: -53px;
  }

  .bio .citation_bio {
    margin-top: -143px;
    font-style: italic;
    color: #555;
    text-align: center;
    background-color: #f2eee3;
    color: #333333;
    border-left: 8px solid white;
    border-top: 8px solid white;
    width: 80%;
    margin-left: 0%;
    border-radius: 17px;
    padding: 10px 20px !important;
    z-index: 2;
  }

  .bio .citation_bio p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 !important;
  }

  .bio .text_bio {
    flex: 1;
    padding: 0px;
    position: relative;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .color-white {
    color: white;
  }
  #testimony_box {
    padding: 2rem 0rem;
    background-color: var(--beige);
    margin-top: 1.7rem;
  }

  .testimony-grid {
    width: 100%;
    padding: 10px 0px;
    margin: 0;
    margin-top: -10px;
  }
  .testimony-grid .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: fit-content;
    border: 8px solid var(--white);
    border-radius: 17px;
    background-color: var(--white);
    margin: 0 0px;
    width: 100%;
    display: none;
  }

  .slider-container .nav-button {
    position: absolute;
    top: 0;
    right: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--green-dark);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
  }

  /* Bouton suivant à l'extrême droite */
  .slider-container .next-button {
    right: 0;
    margin-right: 20px;
    position: absolute;
  }

  /* Bouton précédent juste à gauche du suivant */
  .slider-container .prev-button {
    right: 0;
    margin-left: 20px;
    position: absolute; /* largeur bouton (40px) + 10px d'espace + 10px de marge */
  }

  .slider-container .nav-button:hover {
    background-color: var(--green-dark);
    color: var(--white);
  }
  .grid-mob-testimony {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .grid-mob-testimony .titre_testimo {
    text-align: center !important;
  }

  /*VISON MESSAGE*/
  .vision-message-container {
    background-image: url("../media/background/3.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 2rem 1rem;
    grid-gap: 44px;
    margin-top: -20px;
  }

  .vision-message-container .img_bio {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vision-message-container .img_bio #im-mt {
    margin-top: 30px !important;
  }

  #vision-message div {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .vision-message-container .img_bio {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .vision-message-container .img_bio #img1 {
    height: auto;
    width: 10rem;
    position: absolute;
    left: 0;
  }
  .vision-message-container .img_bio #img1 img {
    height: 100%;
    width: 100%;
    border: 8px solid var(--white);
    border-radius: 17px;
    object-fit: cover;
  }
    .vision-message-container .img_bio #img2{
    margin-top: 3rem;
  }
  .vision-message-container .img_bio #img2 img {
    height: 100%;
    width: 90%;
    margin-left: 5%;
    object-fit: cover;
    border: 8px solid var(--white);
    border-radius: 17px;
  }
  .vision-message-container .img_bio #img3 {
    height: auto;
    width: 10rem;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .vision-message-container .img_bio #img3 img {
    height: 100%;
    width: 100%;
    border: 8px solid var(--white);
    border-radius: 17px;
    object-fit: cover;
  }

  /*PAGE ARTICLES*/
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-bottom: 0px !important;
    height: fit-content;
  }




/*ARTICLE DETAILLES*/
/*ARTICLE DETAILLES*/
/*ARTICLE DETAILLES*/
/* Breadcrumbs */
nav.breadcrumbs {
  font-size: 0.98rem;
  margin: 0 auto;
  padding: 0;
  max-width: 1170px;
  color: var(--gray-medium);
  letter-spacing: 0.01em;
  padding:0 1rem;
  height: fit-content;
}

nav.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
}

nav.breadcrumbs li {
  display: flex;
  align-items: center;
}

nav.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 0.5em;
  color: var(--gray-light);
  font-weight: bold;
}

nav.breadcrumbs a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s;
}

nav.breadcrumbs a:hover {
  color: var(--red-bright);
  text-decoration: underline;
}

.container-total {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem auto;
  gap: 0.5rem;
  padding: 0 1rem;
}

.container-total {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem auto;
  gap: 0.5rem;
  padding: 0 1rem;
}
.article-content-total p{
  text-align: justify;
}
#liste-actions{
  text-align: justify;
  list-style: none;
  margin-top: -15px;
}
#liste-actions li{
  font-style: italic;
  text-align: justify;
  padding: 3px 0px;
}


aside.left {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

aside.right-side {
  flex: 0 0 270px;
  border-radius: 12px;
  padding: 0rem;
  margin-top: -1rem;
  height: fit-content;
}

.article-header img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0rem;
  max-height:530px;
  object-fit: cover;
}

.article-meta {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Articles card */
.articles-card {
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  padding: 0 0.8rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.articles-title-autre {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  margin-top: 01rem;
  position: relative;
}

.articles-list {
  margin-bottom: 1rem;
  padding: 0;
}

.article-item {
  display: flex;
  align-items: flex-start;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
  margin-bottom: 0px;
  border: 1px solid var(--beige);
  cursor: pointer;
}

.article-item:hover {
  background-color: var(--beige);
}

.article-image-side {
  width: 4.4rem;
  height: 4.4rem;
  flex-shrink: 0;
  background-color: var(--beige);
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  margin-right: 0.5rem;
}

.article-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0rem;
  margin-bottom: 17px;
}

.article-image-grid .article-images {
  width: 100% !important;
  height: 8rem;
  flex-shrink: 0;
  background-color: white;
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  margin-right: 0;
  padding: 8px;
  border: 1px solid var(--beige);
  overflow: hidden;
}

.article-image-grid .article-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: var(--transition);
  border-radius: 4px;
  cursor: pointer;
}

.article-image-grid .article-images img:hover {
  transition: var(--transition);
  transform: scale(1.05);
}
.article-image-grid .article-images:hover {
  transition: var(--transition);
  background-color: var(--beige);
}

.article-content-petit {
  position: relative;
  width: 100%;
  padding: 0 0 0 0;
  margin-bottom: 0px;
}

.article-content-petit a {
  text-decoration: none;
  list-style: none;
}

.article-content-petit h5,
.article-content-petit h4 {
  font-weight: 550;
  color: var(--gray-dark);
  margin-bottom: 0;
  font-size: 0.8rem;
  margin: 0;
  margin-top: 0px;
}

.article-content-petit h5:hover,
.article-content-petit h4:hover {
  color: var(--green-dark);
}

.article-content-petit .article-date {
  font-size: 0.7rem;
  color: var(--gray-medium);
  margin: 2.6px 0 0 0;
  font-weight: 500;
}

blockquote {
  border-left: 4px solid var(--green-dark);
  background: var(--beige);
  color: var(--gray-medium);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-style: italic;
}


.article-comments {
  margin: 3rem 0;
  padding-top: 20px;
  border-top: 1px solid #eee;

}

.comments-title {
  font-size: 1.8rem;
  color: var(--gray-dark);
    text-align: center;
}

.comment {
  display: grid;
  grid-template-columns: 100%;
  gap: 0rem;
  padding: 17px 0px;
  margin-bottom: 0;
  background: #f9f9f9;
  border-radius: 0px;
  border-bottom: 1px solid var(--beige);
  
}

.comment-author {
  margin-bottom: 0rem;
  display: flex;
  justify-content: center;
}
.comment-author .comment-avatar {
  width: 80px;
  height: 80px;
}

.comment-author-name {
  font-weight: bold;
  margin-right: 0.5rem;
  color: var(--green-dark);
}

.comment-date {
  color: #777;
  font-size: 0.9rem;
}

.comment-content {
  padding: 0px ;
  height: fit-content;
}
.comment-content p {
  margin-bottom: 0;
}

}



