.post-template-default{
  background:var(--background);
}

#post {
  padding: 3rem 1rem;
  gap: 3rem;
  display: flex;
  flex-direction: column;
  grid-template-columns: 3fr 1fr;
}

#post .breadcrumb {
  position: absolute;
  padding: 1rem;
}


#post .breadcrumb ol {
  width: 100%;
  padding: 0.5rem 1rem;
  gap:0.25rem 0;
  background: rgba(255,255,255,0.8);
  border-radius: var(--border-radius);
}
#post .breadcrumb ol a{
  color:var(--black);
  padding:0;
}
@media screen and (min-width: 668px) {
  #post {
    display: grid;
    padding-top: 18rem;

  }
}

#post .breadcrumb {
  margin-top: 0;
}

@media screen and (min-width: 1200px) {
  #post {
    padding: 3rem 1rem;
    padding-top: 18rem;

  }
}

#post .posts .post {
  position: relative;
  margin: 0;
  margin-bottom: 2rem;
}

#post .posts .post__img {
  margin-bottom: 0.5rem;
}

#post .posts .post__title {
  font-weight: 400;
  line-height: 100%;
  font-size: 1.1rem;
}

#post .posts .post__link,
#post .posts .post__link:visited {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--black);
}

#post .posts .post__description {
  font-size: 0.825rem;
  margin: 0;
}

#post .posts .post__category__list {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--white);
  z-index: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  font-size: 0.825rem;
  box-shadow: var(--box-shadow);
}

#post .posts .post__category__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

#post .posts .post__date {
  margin: 0;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#post .posts .post__date__text {
  font-size: 0.825rem;
}

#post .posts .post .icon {
  width: 0.825rem;
  height: 0.825rem;
}

#post .post p {
  margin-top: 0;
}

#post .post h1,
#post .post h2,
#post .post h3,
#post .post h4,
#post .post h5,
#post .post h6 {
  margin-top: 0;
  font-weight: 500;
  line-height: 120%;
}

#post .post a {
  color:var(--primary);
  transition:var(--transition);
}

#post .post a:hover{
  color:var(--black);
}

#post .post__container {
  padding: 0;
}

@media screen and (min-width: 668px) {
  #post .post__container {
    padding: 0 2rem;
  }
}

#post .post__content {
  margin-top: -6rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  /* box-shadow: var(--box-shadow); */
  background-color: var(--white);
  position: relative;

}

#post .post__header {
  display: flex;
  flex-direction: column;
}

#post .post__thumbnail {
  width: 100%;
  height: 400px;
  max-height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  order: 0;
}

#post .post__title {
  font-size: 1.2rem;
  order: 2;
  padding: 0;
  margin-top: 0;
}

@media screen and (min-width: 668px) {
  #post .post__title {
    font-size: 1.8rem;
  }

  #post .post__content {
    min-height: 400px;
  }
}

#post .post__meta {
  order: 1;
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem 1rem;
}

#post .post__meta .icon {
  width: 1rem;
  height: 1rem;
  stroke: var(--primary);
}

#post .post__meta__list {
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--gap);
}

#post .post__meta__item {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.posts .post__img {
  border-radius: var(--border-radius);
  height: 130px;
  object-fit: cover;
  width: 100%;
}


.posts__aside__title {
  margin: 0;
  margin-bottom: 2rem;
  line-height: 2rem;

}