.page-single {
  width: 100%;
  padding-bottom: 60px;
  position: relative;
}

.page-single .breadcrumb {
  position: absolute;
  right: 0;
  left: 0;
}

.page-single .breadcrumb .breadcrumb-item,
.page-single .breadcrumb .breadcrumb-separator,
.page-single .breadcrumb .breadcrumb-item a {
  color: #fff;
}

.page-single-container {
  width: 100%;
}

.page-single-header {
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 20px;
}

.page-single-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  position: absolute;
  z-index: -1;
}

.page-single-thumbnail::after {
  content: "";
  width: 100%;
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.73) 45.19%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 100%;
  bottom: 0;
}

.page-single-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-single-information {
  width: 100%;
  max-width: var(--container);
  padding: 0 20px 20px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-single-categorie {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-single-categorie a {
  color: #fff;
  background-color: #af0e0e;
  border-radius: 2px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
}

.page-single-categorie a:hover {
  opacity: .8;
}

.page-single-information h1 {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-single-variables {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-single-data {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.page-single-data:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: #fff;
  right: -10px;
}

.page-single-data img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  object-fit: cover;
}

.page-single-data a,
.page-single-data p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: uppercase;
}

.page-single-data a:hover {
  color: var(--link-hover-color);
}

.page-single-data svg {
  width: 20px;
  height: 20px;
}

.page-single-content {
  width: 100%;
  max-width: var(--container);
  padding: 0 20px;
  margin: 0 auto;
  color: var(--body-text);
  font-family: "Roboto", sans-serif;
}

.page-single-content a {
  color: var(--link-color);
}

.page-single-content a:hover {
  color: var(--link-hover-color);
}

.page-single-tags {
  width: 100%;
  max-width: var(--container);
  padding: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 10px;
}

.page-single-tags li {
  width: auto;
  height: auto;
}

.page-single-tags li a {
  display: flex;
  padding: 8px 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  background-color: #fff;
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
}

.page-single-tags li a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.page-single-content {
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
}

.page-single-content p,
.page-single-content li {
    margin-bottom: 1.5rem;
}

.page-single-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
}

.page-single-content h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.page-single-content img {
    max-width: 100%;
    height: auto;
}

.page-single-content blockquote {
    padding-left: 1.5rem;
    border-left: 4px solid var(--cor-terciaria);
    font-style: italic;
}

/* Responsividade */
@media screen and (max-width: 800px) {
  .page-single-header {
    height: auto;
    min-height: 400px;
    padding: 150px 0 20px 0;
  }
}

@media (max-width: 768px) {

    .page-single-content {
        font-size: 1rem; /* 16px */
        line-height: 1.75;
    }

    .page-single-content h2 {
        font-size: 1.6rem;
    }

    .page-single-content h3 {
        font-size: 1.35rem;
    }

}