.h-grey {
  width: 100vw;
  color: var(--grey);
  font-size: calc(var(--bfs) * 1.35);
  padding: calc(var(--bfs) * 1.5) 10%;
  text-align: left;
}

.b-right {
  min-width: 80vw;
  margin: calc(var(--bfs) * 1.5) auto;
  width: 50%;
  padding-right: 10%;
  padding-top: calc(var(--bfs) * 0.2);
  padding-bottom: calc(var(--bfs) * 0.2);
  border: none;
  border-right: 0.5px solid var(--black);
  text-align: left;
}

.b-left {
  min-width: 80vw;
  margin: calc(var(--bfs) * 1.5) auto;
  width: 50%;
  padding-left: 10%;
  padding-top: calc(var(--bfs) * 0.2);
  padding-bottom: calc(var(--bfs) * 0.2);
  border: none;
  border-left: 0.5px solid var(--black);
  text-align: right;
}

.b-left > p,
.b-right > p {
  margin-bottom: var(--bfs);
}

.bold {
  font-weight: 700;
}

.back-or {
  width: 100vw;
  padding: calc(var(--bfs) * 2.5) 0;
  text-align: center;
  background-color: var(--orange-light);
  margin: 5vh 0;
}

.h-or {
  width: 100vw;
  padding: 0 10%;
  padding-top: calc(var(--bfs) * 1.5);
  text-align: left;
  font-size: calc(var(--bfs) * 1.5);
  color: var(--orange);
}

.ul {
  width: 100vw;
  padding: 0 10%;
  text-align: left;
  margin-bottom: calc(var(--bfs) * 2.5);
}

.ul li {
  margin-left: var(--bfs);
  margin-bottom: calc(var(--bfs) * 0.5);
}

.serviceButtonDiv {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: calc(var(--bfs) * 2.5) 0;
  gap: calc(var(--bfs) * 3);
}

.serviceButtonDiv a {
  text-decoration: none;
  color: var(--orange);
  font-weight: 500;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}

.serviceButtonDiv a:hover {
  border-bottom: 2px solid var(--orange);
}

.relatedPost {
  width: 100vw;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--bfs);
}

.relatedPost-post {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  padding: calc(var(--bfs) * 0.7) calc(var(--bfs) * 1.5);
  border: 0.3px solid var(--grey);
  border-radius: 5px;
  box-shadow: 3px 3px 10px var(--white);
  transition: all 0.3s ease-in-out;
}

.relatedPost-post:hover {
  box-shadow: 3px 3px 10px var(--orange);
}

.relatedPost-post-highlight {
  color: var(--orange);
  font-weight: 500;
  font-size: var(--bfs);
}

.relatedPost-post-summary {
  font-size: var(--bfs08);
  color: var(--black);
  height: calc(var(--bfs) * 2.5);
  position: relative;
  overflow: hidden;
}

.relatedPost-post-summary::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
}

.relatedPost-more {
  font-size: var(--bfs08);
  text-decoration: none;
  color: var(--orange);
}

@media (max-width: 900px) {
  .relatedPost-post-summary {
    height: calc(var(--bfs) * 5);
  }
}

@media (max-width: 600px) {
  .serviceButtonDiv {
    flex-direction: column;
    gap: calc(var(--bfs) * 2.5);
  }
}
