.speech {
  padding: 60px 0 40px 0;
  text-align: center;
  margin-top: 3%;
}

.speech h1 {
  font-size: 4rem;
  font-weight: 1000;
}

.slide-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-col {
  width: 100%; /* Ensures each slide takes full width */
  display: flex;
  align-items: center;
  margin:  0 100px;
}

.hero {
  width: 100%;
  max-width: 320px;
  order: 1; /* Ensure hero image appears on the left */
}

.hero img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.content {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 10px;
  padding: 20px 40px;
  margin-top: 10px; /* Adjust spacing as needed */
  margin-left: -20px;
  text-align: center; /* Center text content */
  order: 2; /* Ensure content appears on the right */
}

.content p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  text-indent: 20px;
}

.content em {
  font-size: 1.25rem;
  font-weight: 400;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 20px;
}

.subtitle {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
}

@media (max-width: 850px) {
  .slide-col {
    flex-direction: column;
  }

  .hero {
    order: -1; /* Move hero image above content on smaller screens */
    margin-bottom: 20px; /* Adjust spacing between image and content */
  }

  .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 850px) {
  .speech {
    margin: 0 5%;
  }
  .slide-row {
    display: block; /* Stack slides vertically on small screens */
    overflow-x: hidden;
  }

  .slide-col {
    width: 100%;
    margin: 0;
  }

  .hero img {
    max-width: 100%;
  }

  .content {
    width: 100%;
    padding: 15px;
    margin-left: 0;
  }

  .content p {
    font-size: 1rem;
  }

  .content h2 {
    font-size: 1.2rem;
  }
  .speech h1 {
    font-size: 2rem;
    margin-top: 30px;
  }
}

/* ARTICLES */
hr {
  border: 1px solid #808080;
  margin: 50px 200px 0 200px; /* Margin of 140px on both sides */
}

.articles h3 {
  font-size: 1.3rem;
}
.articles {
  background-color: rgba(195, 255, 147, 0.4); /* Background color with opacity */
  padding: 20px;
  display: flex;
  align-items: center; /* Vertically center items */
  gap: 20px;
  border-radius: 10px;
  margin: 20px 120px 50px 120px;
}

.right-message {
  width: 350px; /* Width of the right-message div */
  text-align: center;
  margin-left: 30px;

  /* Responsive adjustments */
  @media (max-width: 768px) {
    width: 100%;
    margin-left: 0;
  }
}

.articles img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 20px; /* Space below the image */

  /* Responsive adjustments */
  @media (max-width: 768px) {
    width: 100px;
    height: 100px;
  }
}

.message-box {
  flex: 1;
  padding: 20px; /* Initial padding */
  text-align: justify;
  text-indent: 20px;
  overflow: hidden;
}

.message {
  margin-bottom: 10px; /* Margin below message */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .articles {
    flex-direction: column;
    align-items: flex-start;
    margin: 20px;
  }
}
