body.single-blog
  .navigation__checkbox:checked
  + label
  + div
  + nav
  + .site-logo
  svg
  path {
  fill: black;
  animation: AnimInB 0.75s cubic-bezier(0.86, 0, 0.07, 1);
}

body.single-blog header .site-logo svg path {
  animation: AnimOutB 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

@keyframes AnimInB {
  0%,
  60% {
    fill: #fff;
  }

  62% {
    fill: #000;
  }

  65%,
  100% {
    fill: #000;
  }
}

@keyframes AnimOutB {
  0%,
  60% {
    fill: #000;
  }

  62% {
    fill: #fff;
  }

  65%,
  100% {
    fill: #fff;
  }
}

body.single-blog {
  background-color: #f0f0f0;
  color: black;
}

body.single-blog .navigation {
  position: absolute;
  left: 0;
  right: 0;
}

body.single-blog .navigation.fixed-menu {
  position: fixed;
  left: unset;
  right: unset;
}

main > section {
  padding: 0 20px;
  margin: 0 auto 0;
  max-width: 1440px;
  width: auto;
}

#blog-hero {
  display: flex;
  padding: 0;
  max-width: none;
}

.hero-bloque {
  flex: 1;
  position: relative;
}

/* Bloques de contenido */
.bloque-imagen,
.bloque-video,
.bloque-vimeo,
.bloque-texto {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.background-overlay {
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bloque-imagen img,
.bloque-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bloque-vimeo iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Bloque de texto */
.bloque-texto {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 720px;
  margin-left: auto;
}

.texto-contenido {
  font-weight: 300;
  font-size: 70px;
  line-height: 70px;
}

.texto-contenido h1,
.texto-contenido h2,
.texto-contenido h3 {
  margin: 0;
  max-width: 90%;
}

.texto-contenido p {
  margin: 0;
}

/* Autor Info */
.autor-info {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: auto;
  padding-bottom: 20px;
}

.autor-imagen {
  width: 160px;
  height: 160px;
  border-radius: 0;
  flex-shrink: 0;
}

.autor-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.autor-detalles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.autor-numero {
  margin: 0;
  color: #ffc800;
  font-family: Instrument Serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
}

.autor-nombre {
  font-family: Helvetica Neue LT Std;
  font-weight: 300;
  font-size: 20px;
  line-height: 25px;
  margin: 0;
}

.blog-filters {
  margin: 35px auto;
  padding: 0 20px;
}

.blog-filters__filters-time {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-filters__time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-filters__filter {
  font-size: 16px;
  padding: 5px 1.4ch 5px;
  line-height: 1.5em;
  letter-spacing: 0.045em;
  border-radius: 20px;
  transition: 0.2s all;
  background: transparent;
  border: 1px solid black;
}

.blog-filters__time {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}

.bloque-principal {
  padding: 0 20px;
}

.bloque-principal__contenido {
  display: flex;
}

.bloque-principal__titulo-bajada {
  flex: 0 0 50%;
  padding-right: 85px;
}

.bloque-principal__titulo {
  font-weight: 300;
  font-size: 70px;
  line-height: 70px;
}

.bloque-principal__titulo h1,
.bloque-principal__titulo h2,
.bloque-principal__titulo h3,
.bloque-principal__titulo p {
  margin: 0;
}

.bloque-principal__bajada {
  font-weight: 300;
  font-size: 30px;
  line-height: 42.97px;
}

.bloque-principal__texto {
  flex: 0 0 50%;
}

.bloque-principal__texto-contenido h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
}

.bloque-principal__texto-contenido p {
  font-weight: 300;
  font-size: 22.18px;
  line-height: 145%;
}

.bloque-principal__texto-contenido li {
  font-size: 22.18px;
  line-height: 145%;
}

.video {
  position: relative;
  cursor: pointer;
  width: 100%;
}

.video video {
  width: -webkit-fill-available;
}

.video img.pause {
  left: 20px;
  top: 20px;
  width: 4em;
}

.video img {
  position: absolute;
}

.video img.play {
  left: calc(50% - 10em);
  top: calc(50% - 10em);
  width: 20em;
}

.d-none {
  display: none !important;
}

.contenido-bloque {
  display: flex;
  margin-top: 60px;
}

.contenido-bloque__imagen {
  flex: 0 0 50%;
  padding: 0 65px 0;
}

.contenido-bloque--imagen-solo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contenido-bloque--imagen-solo img {
  width: -webkit-fill-available;
}

.contenido-bloque__texto {
  flex: 0 0 50%;
  padding-top: 40px;
}

.contenido-bloque__texto h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
}

.contenido-bloque__texto p {
  font-weight: 300;
  font-size: 22.18px;
  line-height: 145%;
}

.contenido-bloque__texto li {
  font-size: 22.18px;
  line-height: 145%;
}

.contenido-bloque--video {
  width: 100%;
  justify-content: center;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contenido-bloque--texto-solo {
  padding-left: 50%;
  flex-direction: column;
}

.contenido-bloque--texto-solo h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
}

.contenido-bloque--texto-solo p {
  font-size: 22.18px;
  line-height: 145%;
}

.contenido-bloque--texto-solo li {
  font-size: 22.18px;
  line-height: 145%;
}

.extend-autor-info {
  display: flex;
  gap: 25px;
  margin-top: 60px;
  padding-left: 50%;
}

.extend-autor-imagen {
  width: 160px;
  height: 160px;
  border-radius: 0;
  flex-shrink: 0;
}

.extend-autor-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.extend-autor-detalles {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.extend-autor-by {
  font-weight: 300;
  font-size: 22px;
  line-height: 107%;
}

.extend-autor-nombre {
  font-weight: 600;
  font-size: 30px;
  line-height: 107%;
  margin: 0;
}

.extend-autor-cargo {
  font-weight: 300;
  font-size: 22px;
  line-height: 107%;
  margin: 0;
}

.extend-autor-redes {
  display: flex;
  gap: 10px;
}

.share-post {
  margin-top: 65px;
}

.share-post__container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}

.share-post__title {
  font-weight: 600;
  font-size: 22.18px;
  line-height: 145%;
}

.share-post__links {
  display: flex;
  gap: 10px;
}

.share-post__link {
  width: 30px;
  height: 30px;
  border: 1px solid black;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px;
}

.copy-link-message {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.copy-link-message::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #000000;
}

.copy-link-message.show {
  opacity: 1;
}

.previous-next-post {
  margin-top: 20px;
}

.previous-next-post__container {
  border-top: 1px solid black;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
}

.blog-item.previous {
  padding-right: 50%;
}

.blog-item.next {
  padding-left: 50%;
}

.blog-item > .blog-item__link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.blog-item__message {
  font-weight: 600;
  font-size: 25px;
  line-height: normal;
}

.blog-item__message.start {
  text-align: left;
}

.blog-item__message.end {
  text-align: right;
}

.blog-item__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-item__date {
  font-weight: 300;
  font-size: 17px;
  line-height: 110.00000000000001%;
}

.blog-item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-item__title {
  font-weight: 600;
  font-size: 35px;
  line-height: 110.00000000000001%;
  margin: 0;
}

.blog-item__description {
  font-weight: 300;
  font-size: 25px;
  line-height: 110.00000000000001%;
}

.blog-item__author {
  font-weight: 300;
  font-size: 17px;
  line-height: 110.00000000000001%;
}

.blog-item__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-item__filter {
  padding: 5px 15px 5px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: transparent;
  color: black;
  border: 1px solid black;
  font-weight: 400;
  font-size: 17px;
  line-height: 100%;
  display: flex;
  align-items: center;
}

.blog-item:hover .blog-item__filter {
  color: #ffc800;
  border: 1px solid #ffc800;
}

.load-more-container {
  margin-top: 130px;
  margin-bottom: 80px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000000;
  font-size: 63px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.load-more-btn:hover {
  text-decoration: none;
}

.load-more-btn svg {
  width: 50px;
  height: 50px;
}

.load-more-btn svg path {
  stroke: #000000;
  transition: all 0.3s ease;
}

.load-more-btn:hover svg path {
  stroke: #ffc800;
}

@media (width < 1200px) {
  .blog-item__title {
    font-size: 28px;
  }

  .blog-item__description {
    font-size: 22px;
  }

  .blog-item__filter,
  .blog-item__author,
  .blog-item__date {
    font-size: 15px;
  }

  .load-more-btn {
    font-size: 50px;
  }
}

@media (width <= 1024px) {
  .bloque-texto {
    margin-top: 110px;
    gap: 20px;
  }
  .bloque-principal__titulo,
  .texto-contenido {
    font-size: 45px;
  }
}

@media (width <= 924px) {
  body.single-blog .navigation {
    position: relative;
  }
  body.single-blog .navigation .site-logo svg path {
    fill: black;
  }

  @keyframes AnimInB {
    0%,
    60% {
      fill: #000;
    }

    62% {
      fill: #000;
    }

    65%,
    100% {
      fill: #000;
    }
  }

  @keyframes AnimOutB {
    0%,
    60% {
      fill: #000;
    }

    62% {
      fill: #000;
    }

    65%,
    100% {
      fill: #000;
    }
  }

  body.single-blog .navigation .navigation__icon::before,
  body.single-blog .navigation .navigation__icon::after,
  body.single-blog .navigation .navigation__icon {
    background-color: black;
  }

  #blog-hero {
    flex-direction: column;
  }

  .hero-bloque {
    flex: 0 0 100%;
    position: relative;
  }

  .primer-bloque {
    width: 100%;
  }

  .blog-hero .bloque-texto {
    margin: 0;
    padding: 55px 40px;
  }

  .texto-contenido {
    font-size: 45px;
    line-height: 46.25px;
  }

  .autor-info {
    gap: 10px;
    margin-top: 0;
    padding-bottom: 0;
  }

  .autor-imagen {
    width: 105px;
    height: 105px;
  }

  .autor-numero {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
  }

  .autor-nombre {
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
  }

  .bloque-principal__contenido {
    flex-direction: column;
    gap: 40px;
  }

  .bloque-principal__texto,
  .bloque-principal__titulo-bajada {
    flex: 0 0 100%;
    padding: 0;
  }

  .bloque-principal__titulo {
    font-weight: 300;
    font-size: 45px;
    line-height: 46.8px;
  }

  .bloque-principal__bajada {
    font-weight: 300;
    font-size: 20.06px;
    line-height: 28.73px;
  }

  .bloque-principal__texto-contenido h2 {
    font-size: 30px;
    line-height: 120%;
  }

  .bloque-principal__texto-contenido li,
  .bloque-principal__texto-contenido p {
    font-size: 16px;
    line-height: 145%;
  }

  .contenido-bloque {
    margin-top: 40px;
    flex-direction: column;
  }

  .contenido-bloque__imagen {
    padding: 0;
  }

  .contenido-bloque__texto {
    padding-top: 35px;
  }

  .contenido-bloque__texto h2 {
    font-size: 30px;
    line-height: 120%;
  }

  .contenido-bloque__texto li,
  .contenido-bloque__texto p {
    font-size: 16px;
    line-height: 145%;
  }

  .contenido-bloque--texto-solo {
    padding-left: 0;
  }

  .contenido-bloque--texto-solo h2 {
    font-size: 30px;
  }

  .contenido-bloque--texto-solo li,
  .contenido-bloque--texto-solo p {
    font-size: 16px;
  }

  .extend-autor-info {
    padding-left: 0;
    margin-top: 35px;
  }

  .extend-autor-detalles {
    gap: 15px;
    justify-content: space-between;
  }

  .extend-autor-imagen {
    width: 125px;
    height: 125px;
  }

  .extend-autor-cargo,
  .extend-autor-by {
    font-size: 16px;
  }

  .extend-autor-nombre {
    font-size: 25px;
  }

  .share-post {
    margin-top: 35px;
  }

  .share-post__container {
    justify-content: flex-start;
  }

  .share-post__title {
    font-size: 16px;
  }

  .share-post__links {
    gap: 5px;
  }

  .share-post__link {
    padding: 3px;
    width: 20px;
    height: 20px;
  }

  .share-post__link img,
  .share-post__link svg {
    width: 20px;
    height: 20px;
  }

  .previous-next-post__container {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .blog-item__message {
    font-size: 17.45px;
    line-height: 157%;
  }

  .blog-item__message.end {
    text-align: left;
  }

  .blog-item.previous {
    padding-right: 0%;
  }

  .blog-item.next {
    padding-left: 0%;
  }

  .blog-item > .blog-item__link {
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
  }

  .blog-item__info {
    gap: 20px;
  }

  .blog-item__filters {
    display: inline-flex;
  }

  .load-more-container {
    margin-top: 80px;
    margin-bottom: 40px;
  }

  .load-more-btn {
    font-size: 35px;
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  .load-more-btn svg {
    width: 25px;
    height: 25px;
  }
}
