.box {
  position: relative;
  z-index: 9999;
  /* Add a high z-index value */
  height: auto; /* Change height to auto */
  min-height: 90vh; /* Set a minimum height */
}

.box-bl {
  height: auto; /* Change height to auto */
  min-height: 90vh; /* Set a minimum height */
}

.blog-content {
  width: 100%;
  height: auto; /* Change height to auto */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
  align-items: center;
}

.embedded-content {
  width: 80%;
  height: auto; /* Change height to auto */
  overflow-y: visible; /* Remove vertical scrollbar */
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  padding-right: 14%;
  padding-left: 14%;
  padding-bottom: 20px; /* Add some padding at the bottom */
  font-size: 0.8vw;
}

.char-image-container {
  display: flex;
  flex-direction: column-reverse;
  /* Updated this line */
  align-items: center;
  margin-right: 20px;
  /* Add some spacing between containers */
}

.char-image-container img {
  max-width: 100%;
  height: auto;
}

.char-image-container .name {
  margin-bottom: 5px;
  /* Updated this line */
  font-weight: bold;
}

.responsive-image-b {
  max-width: 98.5%;
  height: auto;
  float: left;
  margin-right: 10px;
}

.responsive-image-c {
  max-width: 98.5%;
  width: 700px;
  height: auto;
  float: left;
  margin-right: 10px;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container .name {
  margin-top: 5px;
  /* Adjust the spacing as needed */
}

.styled-box-container {
  display: flex;
  align-items: center;
}

.styled-box-container-r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.styled-box-container {
  position: relative;
  min-width: 300px;
  min-height: 150px;
  max-width: 80vw;
  max-height: 80vh;
  margin: 1%;
}

.styled-box-container-r {
  position: relative;
  min-width: 300px;
  min-height: 150px;
  max-width: 80vw;
  max-height: 80vh;
}

.styled-box {
  position: relative;
  padding: 2px 4px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border: 3px solid #7B617C;
  /* Light pink */
  border-radius: 10px;
  overflow: hidden;
  /* Added to clip the corner design */
  margin: 1%;
  /* Added 1% margin */
}

.styled-box::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 3px solid #6b6b6b;
  /* Dark pink */
  z-index: 1;
  border-radius: 10px;
  background: radial-gradient(circle at 0 0, transparent 6px, #6b6b6b 6px) no-repeat,
      radial-gradient(circle at 100% 0, transparent 6px, #6b6b6b 6px) no-repeat,
      radial-gradient(circle at 0 100%, transparent 6px, #6b6b6b 6px) no-repeat,
      radial-gradient(circle at 100% 100%, transparent 6px, #6b6b6b 6px) no-repeat;
  background-size: 12px 12px;
  background-origin: border-box;
  /* Added to position the background correctly */
}

.styled-box::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid #7B617C;
  /* Light pink */
  z-index: 0;
  border-radius: 10px;
}

.styled-box>.text-container {
  position: relative;
  z-index: 3;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 6px;
}

.text-content {
  word-break: break-word;
}

.embedded-content {
    margin: 0;
    font-family: Arial, sans-serif;
}

.embedded-content h1 {
  font-family: Arial, sans-serif;
  line-height: 1.2;
}

g3 {
  font-family: Arial, sans-serif;
  font-size: 0.7vw;
  font-style: italic;
}

g4 {
  font-family: Arial, sans-serif;
  font-size: 1.0vw;
  font-weight: bold;
  text-align: center;
}

.blogintro {
  border-top: 1px dashed;
  padding-top: 10px;
  margin-top: 15px; 
}

a {
  margin: 0;
  font-family: Arial, sans-serif;
}

@media screen and (max-width: 768px) {
  
  .embedded-content {
    width: 100%;
    line-height: 1.5;
    font-size: 10px;
  }

  g3 { font-size: 10px; }
  g4 { font-size: 14px; }
  .embedded-content h1 { font-size: 22px; }
}