.single {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px 0px;
}

.single .wrapper {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}

.single .wrapper .single_content {
  width: 65%;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  height: min-content;
  position: relative;
}

.single .wrapper h1 {
  font-family: 'Rubik';
  text-align: center;
  padding: 5px 0px;
  font-size: 1.7rem;
}

.single .wrapper h2 {
  font-family: 'Nunito';
  text-align: center;
  padding: 5px 0px;
  font-size: 1.4rem;
}

.single .wrapper p {
  font-size: 1.2rem;
  font-family: 'Rubik';
}

.single .wrapper ul,
.single .wrapper ol {
  padding-left: 40px;
  font-family: sans-serif;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.single .wrapper img {
  margin: 10px 0px;
  width: 100%;
  aspect-ratio: 733 / 521;
  max-width: 1000px;
  object-fit: cover;
  text-align: center;
}

.single .wrapper blockquote {
  font-family: 'Sriracha';
  text-align: right;
  margin: 10px 0px 5px 0px;
  border-left: 5px solid rgb(107, 107, 107);
  border-radius: 0px 10px 0px 10px;
  font-size: 1rem;
}


.single .wrapper .other_area {
  width: 34%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  height: min-content;
}


.single .wrapper .other_area .area {
  margin-bottom: 30px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s;
  height: min-content;
  transition: all 0.3s;
}

.single .wrapper .other_area .area img {
  aspect-ratio: 733 / 521;
}

.single .wrapper .other_area .area a {
  transition: all 0.3s;
}

.single .other_area .area h2 {
  font-size: 1.1rem;
}

@media(max-width:1315px) {
  .single .wrapper .single_content {
    width: 68%;
  }

  .single .wrapper .other_area {
    width: 31%;
  }
}

@media (max-width:991px) {
  .single .wrapper {
    width: 90%;
  }

  .single .wrapper h1 {
    font-size: 1.5rem;
  }

  .single .wrapper h2 {
    font-size: 1.3rem;
  }

}



@media(max-width:800px) {
  .single .wrapper .single_content {
    width: 100%;
  }

  .single .wrapper .other_area {
    display: none;
  }
}


@media (max-width:700px) {
  .single .wrapper h1 {
    font-size: 1.4rem;
  }

  .single .wrapper h2 {
    font-size: 1.2rem;
  }

  .single .wrapper p {
    font-size: 1rem;
  }

  .single .wrapper ul,
  .single .wrapper ol {
    font-size: 1rem;
  }
}