.article-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .article-block {
    flex-direction: column-reverse;
    /* ⬅️ Text goes above image on mobile */
    align-items: center;
    text-align: center;
  }

  .article-block img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .article-content {
    width: 100%;
    padding: 0 1rem;
    text-align: left;
  }
}

.active {
  border-bottom: solid 1px #A6CE39;
}

.responsive-article-img {
  width: 100%;
  max-width: 400px;
  /* ⬅️ adjust this as needed */
  height: auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .responsive-article-img {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

.article-content {
  text-align: left;
}

.contact-info {
  display: flex;
  flex-direction: column;

  p {
    margin: 0.5rem 0;
  }
}