/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/(pages)/story/article.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
p {
  font-family: sans-serif;
  font-size: 1.1rem;
}

.story-para p {
  line-height: 23px;
  font-size: 16px;
}

li {
  font-size: 13px;
  border-bottom: 1px solid grey;
}

/* Ensure image container behaves well */
.image-container {
  position: relative;
  margin-bottom: 20px;
  /* Adds space after the image */
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Make sure the text starts immediately below the image */
.text-container {
  width: 100%;
  margin-top: 16px;
  /* Space between image and text */
}

/* Mobile and tablet styling for full-width behavior */
@media (max-width: 768px) {
  .text-container {
    width: 100%;
    /* Ensures the text spans full width below the image */
  }
}

@media (min-width: 768px) {

  /* For desktop, you can set layout to side-by-side */
  .flex.md\:flex-row {
    display: flex;
    flex-direction: row;
  }

  .image-container,
  .text-container {
    width: 50%;
    /* Ensure the image and text share equal space */
  }

  .text-container {
    margin-top: 0;
  }
}

.box-heading {
  font-size: 16px;
}

.box-para {
  font-size: 13px;
}
