/* blockquote */
blockquote {
  color: #444;
  background: #fffbea;
  border-left: 6px solid var(--color-gold);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 1em 1.5em;
  font-size: 16px;
}
blockquote p {
  margin: 0!important;
}

/* misc */
::selection {
  background: var(--color-gold);
  color: var(--color-white);
}

/* img-cover */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* blogdetails */
.blogdetails img,.blogdetails img.alignnone,.content-sproj img,.news-content img {
  width: 100%;
  height: auto;
}

/* home */
body.home .hero-image,body.home .hero-image img,body.home .hero-media,body.home .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════════════════
   Procedente de general.css
   ══════════════════════════════════════════════════════ */

/* contents-news */
.contents-news {
  grid-template-columns: 65% 35%;
  display: grid;
}
.contents-news h1 {
  color: #00193a;
  margin: 0;
  font-size: clamp(1.8rem, 3vw + 1rem, 3.5rem);
}
.contents-news .section-news {
  border-right: 1px solid #e8e8e8;
  margin-top: 10px;
  padding: 10px 30px;
}
.contents-news .header-news {
  max-width: 1033px;
  margin: 0 auto;
  padding: 25px 0 20px;
}
.contents-news .entry-title {
  font-size: 45px;
  line-height: 57px;
}
.contents-news .section-related {
  align-self: flex-start;
  height: fit-content;
  margin-top: 30px;
  padding: 10px 30px;
  position: sticky;
  top: 20px;
}
.contents-news .contenedor-body .author {
  margin-right: 5px;
  font-style: italic;
  font-weight: 700;
}
.contents-news .contenedor-body .published {
  color: gray;
  margin-left: 5px;
  font-style: italic;
}
.contents-news .contenedor-body .info-published {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  display: flex;
}
.contents-news .contenedor-body .info-published .author {
  font-weight: 700;
}
.contents-news .contenedor-body .info-published img {
  border-radius: 50%;
}
.contents-news .contenedor-body .info-published .author-info {
  align-items: center;
  gap: 10px;
  display: flex;
}
.contents-news .contenedor-body .info-published .author-info div {
  align-items: center;
  gap: 25px;
  display: flex;
}
.contents-news .contenedor-body .info-published .author-info p {
  color: #555;
  margin: 0;
  font-size: .85rem;
}
.contents-news .contenedor-body .info-published .author-info p a {
  color: #001980;
}
.contents-news .share-buttons {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: system-ui, sans-serif;
  display: flex;
}
.contents-news .share-buttons span {
  margin-right: 8px;
  font-weight: 700;
}
.contents-news .share-buttons a {
  color: #fff;
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color .3s, transform .2s;
  display: inline-flex;
}
.contents-news .share-buttons svg {
  width: 16px;
  height: 16px;
}
.contents-news .share-buttons a:hover {
  filter: brightness(.9);
  transform: translateY(-2px);
}
.contents-news .share-buttons .facebook {
  background-color: #1877f2;
}
.contents-news .share-buttons .twitter {
  background-color: #000;
}
.contents-news .share-buttons .whatsapp {
  background-color: #25d366;
}

/* custom-item */
.custom-item {
  border-bottom: 1px solid #e8e8e8;
  grid-template-columns: 59% 1fr;
  gap: 79px;
  padding: 20px 0;
  display: grid;
}
.custom-item h3 {
  font-size: 14px !important;
}
.custom-item .img-item {
  width: 100px;
  height: 100px;
  display: block;
}
.custom-item .img-item img {
  border-radius: 8px;
}
.custom-item .author {
  margin-right: 5px;
  font-style: italic;
  font-weight: 700;
}
.custom-item .published {
  color: gray;
  margin-left: 5px;
  font-style: italic;
}

/* contents-news */
@media (max-width: 576px) {
  .contents-news {
    grid-template-columns:1fr;
    padding: 0 10px;
  }
  .contents-news .section-news {
    border-right: none;
    padding: 0;
  }
  .contents-news .section-related {
    margin-top: 50px;
    padding: 0;
  }
}

/* info-published */
@media (max-width: 576px) {
  .info-published {
    display: block !important;
  }
}

/* author-info */
@media (max-width: 576px) {
  .author-info {
    padding-bottom: 15px;
  }
}

/* custom-item */
@media (max-width: 576px) {
  .custom-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .custom-item .img-item {
    width: 100%;
    height: auto;
  }
}

/* entry-title */
.entry-title {
  font-size: 45px;
  line-height: 57px;
}

/* breadcrump */
.breadcrump {
  column-gap: 8px;
  margin-bottom: 12px;
  display: flex;
}
.breadcrump li {
  align-items: center;
  display: flex;
}
.breadcrump li a {
  border-bottom: 2px solid #ffb42d;
  padding-bottom: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

/* header-news */
.header-news {
  max-width: 1033px;
  margin: 0 auto;
  padding: 25px 0 20px;
}

/* entry-title */
@media (max-width: 576px) {
  .entry-title {
    padding: 20px 38px 0;
    font-size: 35px;
    line-height: 45px;
  }
}

/* breadcrump */
@media (max-width: 576px) {
  .breadcrump {
    margin-bottom: 0;
    padding-left: 38px;
  }
}

/* main-blog */
.main-blog .blog-cont-body a, .news-content a {
  font-weight: 700 !important;
  -webkit-text-decoration: underline var(--color-gold);
  text-decoration: underline var(--color-gold);
  text-decoration-thickness: 2px;
}

/* wp-caption */
figure.wp-caption.aligncenter {
  margin: 0 auto;
}

/* section-related-posts */
.section-related-posts .related-title {
  margin-bottom: 20px;
}
.section-related-posts .related-title h2 {
  color: #00224f;
  font-weight: 700;
}
.section-related-posts .related-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}
.section-related-posts .rel-card-item {
  border: 1px solid #e9eaec;
  border-radius: 5px;
  display: grid;
}
.section-related-posts .rel-card-imgs img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.section-related-posts .rel-card-decrip {
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  display: flex;
}
.section-related-posts .rel-card-imgs {
  height: 250px;
}
.section-related-posts .rel-card-imgs img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-related-posts .rel-card-title {
  margin-bottom: 15px;
}
.section-related-posts .rel-card-title a {
  color: #00224f;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* share-buttons */
.share-buttons {
  gap: 15px;
  display: flex;
}

/* section-related-posts */
@media (max-width: 576px) {
  .section-related-posts .related-cards {
    grid-template-columns: 1fr;
  }
  .section-related-posts {
    margin-top: 30px;
  }
}

/* slider-reviews */
.slider-reviews .avatar img {
  width: 100%;
  height: 100%;
}

/* trip_logo */
.trip_logo svg {
  width: 140px;
}
