body {
    font-family: 'Georgia', serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.7;
    margin: 0; /* ✅ remove default margin */
    padding: 0;
  }

  .article-container {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #fdfdfd; /* optional for contrast */
  }
  
  .article-content-wrapper {
    display: flex;
    flex-direction: column;  /* 🔄 Stack children vertically */
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }

  .article-container button {
    font-size: 0.95rem;
  }

  .article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  img {
    cursor: zoom-in;
  }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 1rem auto;
  border-radius: 6px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}  

@media (max-width: 576px) {
    .article-content-wrapper {
      padding: 1rem;
    }
  
    .article-image {
      margin: 0.5rem 0;
    }
  
    .video-wrapper {
      margin: 0.5rem 0;
    }
  }