/** correción fuente en body **/
body {
  font-family: "Montserrat", sans-serif !important;
}
/* ===== HEADER ===== */
.clv-header {
  position: relative;
  padding: 12px 20px;
}

body:not(.home) .clv-header {
  border-bottom: 1px solid lightgray;
}

.clv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.clv-logo img {
  height: 32px;
}

.clv-toggle {
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.clv-toggle svg path {
  stroke: var(--contrast);
}

.clv-toggle:hover,
.clv-toggle:focus-visible,
.clv-toggle:active {
  background: var(--accent);
}

.clv-toggle:hover svg path,
.clv-toggle:focus-visible svg path,
.clv-toggle:active svg path {
  stroke: white;
}

.clv-search-btn {
  border: none !important;
  background: url("../images/search-30x30.webp") no-repeat center !important;
  background-size: contain !important;
  width: 30px;
  height: 30px;
  text-indent: -1000px;
}

/* ===== OFFCANVAS ===== */

.clv-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.clv-offcanvas.active {
  pointer-events: auto;
}

.clv-offcanvas__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clv-offcanvas__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: --var(--contrast);
  padding: 30px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.clv-offcanvas.active .clv-offcanvas__overlay {
  opacity: 1;
}

.clv-offcanvas.active .clv-offcanvas__panel {
  transform: translateX(0);
}

.clv-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.clv-nav li {
  margin-bottom: 20px;
}

.clv-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
}

.clv-nav a:hover {
  color: var(--accent);
}

/* ===== SEARCH FULLSCREEN ===== */

.clv-search {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.clv-search.active {
  transform: translateY(0);
}

.clv-search__inner input {
  font-size: 32px;
  border: none;
  border-bottom: 2px solid var(--contrast);
  outline: none;
  width: 400px;
  max-width: 90vw;
  padding: 10px;
}

/* ===== CLOSE BUTTON ===== */

.clv-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.clv-search__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--contrast);
}

/* ===== RESPONSIVE ===== */

@media (min-width: 1024px) {
  .clv-header {
    padding: 16px 40px;
  }

  .clv-logo img {
    height: 40px;
  }

  .clv-offcanvas__panel {
    width: 320px;
  }
}

@media (max-width: 1025px) {
  .wp-block-post-featured-image {
    margin-bottom: 0 !important;
  }
  .wp-block-heading {
    padding-right: 1em;
    padding-left: 1em;
  }
  .wp-block-heading::after {
    left: 1em !important;
  }
  h1.entry-title,
  h1.wp-block-query-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .clv-lasts-content {
    bottom: 0px !important;
    left: 0 !important;
    max-width: 100% !important;
    height: 100%;
  }
  .clv-ultimas-home .clv-last-note .wp-block-post-title a {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
}

.no-scroll {
  overflow: hidden;
}

/* ===== DARK HEADER ===== */

.clv-header-dark {
  background-color: var(--contrast);
}
.clv-header-dark .clv-search-btn {
  filter: invert(1);
}
.clv-header-dark .clv-toggle svg path {
  stroke: white;
}
.clv-header-dark .clv-toggle:hover {
  background: var(--accent);
}

/* ===== TOP BAR ===== */
.clv-top-bar {
  display: flex;
  padding: 5px 20px;
  background-color: var(--accent);
  justify-content: center;
}
.clv-top-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  align-items: center;
}
.clv-top-bar-live {
  background: var(--contrast);
  padding: 0 10px;
  border-radius: 3px;
}
.clv-top-bar,
.clv-top-bar a {
  color: white;
  font-size: 12px;
}
.clv-top-bar-live svg {
  fill: var(--accent);
}
.clv-top-bar a {
  display: flex;
  align-items: center;
  column-gap: 3px;
  text-decoration: none;
  text-transform: uppercase;
}
#core {
  animation: pulse1 1.5s ease-in-out infinite;
}
#radar {
  animation: pulse2 1.5s ease-in-out infinite;
}
@keyframes pulse1 {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  30% {
    opacity: 1;
    transform: scale(3);
  }

  60% {
    opacity: 1;
    transform: scale(4);
  }

  100% {
    opacity: 0;
    transform: scale(5);
  }
}

@keyframes pulse2 {
  0% {
    transform: scale(3, 3);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(10, 10);
    opacity: 0;
  }
}

/* ═══════════════════════════════
   BLOQUES NATIVOS — Globales
   Estilos base para bloques nativos de WordPress/GenerateBlocks.
   Cada sección sobreescribe solo lo que difiere.
═══════════════════════════════ */

/* --- Imagen destacada --- */
.wp-block-post-featured-image {
  margin-bottom: 10px;
}
figure.wp-block-post-featured-image img,
.gb-loop-item,
.gb-loop-item iframe,
.clv-image-border-radius {
  border-radius: 10px;
}
/* --- Categoría (pastilla) --- */
.wp-block-post-terms,
.wp-block-tag-cloud {
  display: flex;
}
.wp-block-post-terms a,
.wp-block-tag-cloud a {
  display: flex;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: #da0080;
  color: #ffffff !important;
  text-decoration: none;
  align-self: self-start;
  width: fit-content;
}
.wp-block-tag-cloud {
  gap: 10px;
  flex-wrap: wrap;
}
.wp-block-tag-cloud a {
  margin-right: 0 !important;
  font-size: 0.7rem !important;
}
/* --- Heading de sección --- */
.wp-block-heading,
.entry-title,
.wp-block-query-title,
.wp-block-term-name {
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}
h2.wp-block-heading {
  font-size: 28px;
}
h1.entry-title,
h1.wp-block-query-title {
  font-size: 32px;
}
.wp-block-heading::after,
.entry-title::after,
.wp-block-query-title::after,
.wp-block-term-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
}

/* --- Título de artículo --- */
.wp-block-post-title,
.wp-block-post-title a {
  color: var(--accent);
  text-decoration: none;
  padding-top: 5px;
  line-height: 1.2;
  font-weight: 500;
}

h2.wp-block-post-title {
  font-size: 25px;
  font-weight: 700;
}
h3.wp-block-post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Fecha --- */
.wp-block-post-date {
  font-size: 13px;
}

/* --- Autor --- */
.wp-block-post-author__name,
.wp-block-post-author-name {
  display: flex;
  align-items: center;
  font-size: 13px;
  text-transform: capitalize;
}
.wp-block-post-author__name::before,
.wp-block-post-author-name::before {
  content: "Por:";
  margin-right: 2px;
}

/* ===== FOOTER ===== */
footer#site-footer {
  border-top: 1px solid var(--accent);
  padding: 60px 20px 40px;
  background: #000;
}
.site-footer {
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 14px;
}

.footer-main-links li {
  border-bottom: 1px solid #333;
  padding: 18px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-main-links li:first-child {
  padding-top: 0;
}

.footer-col a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-subtitle {
  margin-top: 20px;
  font-weight: bold;
  color: #fff;
}

.footer-sub {
  margin-left: 15px;
  font-size: 0.9rem;
}

/* Redes sociales */

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #fff;
  color: #000;
}

/* Parte inferior */

.footer-bottom {
  text-align: center;
}

.footer-logo {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

/* ========================= */
/* 📱 Responsive */
/* ========================= */

@media (max-width: 1024px) {
  .footer-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main-links li {
    padding: 14px 0;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-logo {
    font-size: 36px;
  }
}

/* ========================= */
/* Social Links Gutenberg */
/* ========================= */

.footer-social .wp-block-social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0 0 0px;
  list-style: none;
}

.footer-social .wp-social-link {
  margin: 0;
  background-color: white !important;
  border: none;
}

.footer-social .wp-block-social-link-anchor {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.footer-social .wp-block-social-link-anchor svg {
  width: 20px;
  height: 20px;
  fill: black !important;
}

.footer-social .wp-block-social-link-anchor:hover {
  background: #fff;
  color: #000;
}

/* OTHERS */
.wp-block-post-excerpt {
  font-size: 16px;
  line-height: 1.4;
}

/* INSTAGRAM EMBED */
.clv-instagram-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  /* aspect-ratio: 540 / 675; */
  aspect-ratio: 4 / 4;
}

.clv-instagram-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* TIKTOK EMBED */
.clv-tiktok-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 325 / 575;
  /* aspect-ratio: 4 / 4; */
  max-height: 575px;
  border-radius: 10px;
}

.clv-tiktok-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/** instagram **/
.clv-instagram-wrapper {
  width: 360px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.clv-instagram-wrapper iframe {
  position: absolute;
  top: -120px; /* cortar header */
  left: 0;
  width: 100%;
  height: 516px; /* más alto para compensar */
}

/* Overlay de hover sobre el bloque Instagram */
.clv-instagram-modal-trigger,
.clv-instagram-link-wrap {
  display: block;
  cursor: pointer;
}

.clv-instagram-link-wrap {
  text-decoration: none;
  color: inherit;
}

.clv-instagram-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0);
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition:
    background 0.25s ease,
    opacity 0.25s ease;
  border-radius: 10px;
  opacity: 0;
  cursor: pointer;
}

.clv-instagram-modal-trigger:hover .clv-instagram-overlay,
.clv-instagram-modal-trigger:focus-within .clv-instagram-overlay,
.clv-instagram-link-wrap:hover .clv-instagram-overlay,
.clv-instagram-link-wrap:focus-within .clv-instagram-overlay,
.clv-instagram-overlay:hover {
  background: rgba(0, 0, 0, 0.45);
  opacity: 1;
}

/* Modal Instagram */
.clv-instagram-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.clv-instagram-modal--open {
  display: flex;
}

.clv-instagram-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.clv-instagram-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 400px;
  max-width: calc(100vw - 32px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.clv-instagram-modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #efefef;
  background: #fff;
  flex-shrink: 0;
}

.clv-instagram-modal__close {
  background: #f0f0f0;
  color: #333;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.clv-instagram-modal__close:hover,
.clv-instagram-modal__close:focus-visible {
  background: #e0e0e0;
  color: #000;
  outline: none;
}

.clv-instagram-modal__body {
  position: relative;
  overflow: hidden;
  height: 540px;
}

.clv-instagram-modal__body iframe {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 660px;
  border: 0;
}

.clv-instagram-modal__footer {
  padding: 12px 16px;
  text-align: center;
  border-top: 1px solid #eee;
}

.clv-instagram-modal__ig-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #e1306c;
  text-decoration: none;
}

.clv-instagram-modal__ig-link:hover {
  text-decoration: underline;
}

body.clv-instagram-modal-active {
  overflow: hidden;
}

/* YOUTUBE FACADE */
.clv-youtube-facade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clv-youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 0, 0.9);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  padding: 0;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.clv-youtube-facade:hover .clv-youtube-play-btn,
.clv-youtube-facade:focus-within .clv-youtube-play-btn {
  background: rgb(255, 0, 0);
  transform: translate(-50%, -50%) scale(1.1);
}

/* TIKTOK FACADE */
.clv-tiktok-facade {
  background-color: #010101;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.clv-tiktok-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(254, 44, 85, 0.9);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  padding: 0;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.clv-tiktok-facade:hover .clv-tiktok-play-btn,
.clv-tiktok-facade:focus-within .clv-tiktok-play-btn {
  background: rgb(254, 44, 85);
  transform: translate(-50%, -50%) scale(1.1);
}

.clv-archivo-menu {
  background: #da0080;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
}
.clv-archivo-menu:hover {
  background-color: black;
}
.clv-audiovisual-loop iframe {
  border-radius: 10px !important;
}

/* Shorts: limitar altura en mobile (9:16 nativo = 580px, demasiado) */
@media (max-width: 767px) {
  .clv-audiovisual-loop .wp-embed-aspect-9-16.wp-has-aspect-ratio .wp-block-embed__wrapper {
    padding-bottom: 0 !important;
    height: 420px;
  }
}
.wpforms-submit {
  background-color: black !important;
  color: white !important;
  border: none !important;
  padding: 10px 25px !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  cursor: pointer;
  transition: all ease-in-out 0.4s !important;
}
.wpforms-submit:hover {
  background-color: var(--accent) !important;
}
.clv-audiovisual-looper .wp-block-post-title {
  padding: 20px 0;
  color: var(--contrast);
  font-size: 24px;
}
.clv-looper-seccion .gb-loop-item {
  width: calc(50% - 1rem);
}
.clv-looper-seccion .gb-loop-item:first-child {
  width: 100%;
}
@media (max-width: 768px) {
  .gb-looper-56d8cf5a .gb-loop-item {
    width: 100%;
  }
}
body:not(.home) .content-area {
  padding-top: 25px;
  padding-bottom: 40px;
}
.clv-relacionados .wp-block-post-title {
  font-size: 18px;
}

/* ===================================================
   SINGLE POST — Opción A: Editorial Angosta
   =================================================== */

/* --- Constrain meta + contenido a 760px centrado --- */
.single-post .clv-entrada .wp-block-post-terms,
.single-post .clv-entrada > div:has(.wp-block-post-date),
.single-post .clv-entrada h2.wp-block-post-title,
.single-post .clv-entrada .gb-element-7edf4735,
.single-post .dynamic-entry-content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* --- Categoría --- */
.single-post .clv-entrada .wp-block-post-terms {
  margin-top: 28px;
  margin-bottom: 6px;
}

/* --- Fecha + Autor en línea --- */
.single-post .clv-entrada > div:has(.wp-block-post-date) {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.single-post .clv-entrada .wp-block-post-date {
  font-size: 13px;
  color: #666;
}

.single-post .clv-entrada .wp-block-post-date::after {
  content: "·";
  margin-left: 6px;
  color: #bbb;
}

.single-post .clv-entrada .wp-block-post-author-name {
  font-size: 13px;
  color: #666;
}

/* --- Título --- */
.single-post .clv-entrada h2.wp-block-post-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 0;
}

/* --- Shares: borde + label "Compartir:" --- */
.single-post .clv-entrada .gb-element-7edf4735 {
  margin-top: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.single-post .wp-block-outermost-social-sharing {
  margin-bottom: 0;
}

.single-post .wp-block-outermost-social-sharing::before {
  content: "Compartir:";
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  align-self: center;
  margin-right: 4px;
}

/* --- Cuerpo del artículo --- */
.single-post .dynamic-entry-content {
  margin-top: 32px;
}

.single-post .dynamic-entry-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 1.5em;
}

/* Primer párrafo como lead */
.single-post .dynamic-entry-content > p:first-of-type {
  font-size: 20px;
  line-height: 1.65;
  font-weight: 500;
  color: #111;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

/* --- Separador antes de relacionados --- */
.single-post .clv-relacionados-container {
  margin-top: 64px;
  border-top: 3px solid var(--accent);
  padding-top: 40px;
  flex-direction: column;
}

.single-post .clv-relacionados-container > .wp-block-heading {
  width: 100%;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .single-post .clv-entrada h2.wp-block-post-title {
    font-size: 28px;
  }

  .single-post .dynamic-entry-content p {
    font-size: 17px;
  }

  .single-post .dynamic-entry-content > p:first-of-type {
    font-size: 18px;
  }
}

/* --- Bloque de botones WordPress --- */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
a.button,
a.wp-block-button__link:not(.has-background) {
  background-color: var(--accent) !important;
  color: #fff;
}

button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
a.button:hover,
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
a.button:focus,
a.wp-block-button__link:not(.has-background):active,
a.wp-block-button__link:not(.has-background):focus,
a.wp-block-button__link:not(.has-background):hover {
  background-color: var(--accent);
  opacity: 0.9;
  color: #fff;
}

/* --- Foto de la semana --- */
.clv-foto-hero {
  margin-bottom: 2rem;
}
.clv-foto-hero .wp-block-post-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--contrast);
  text-decoration: none;
}
.clv-foto-hero .wp-block-post-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.clv-foto-card {
  border-radius: 8px;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.clv-foto-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  cursor: pointer;
}
.clv-foto-card:hover .clv-foto-loop-title a {
  color: var(--accent);
}
.clv-foto-card .wp-block-post-featured-image {
  margin-bottom: 0;
}
.clv-foto-card .wp-block-post-title {
  padding: 0.75rem 0 0.25rem;
  font-size: 1rem;
}
.clv-foto-card .wp-block-post-title a {
  color: var(--contrast);
  text-decoration: none;
}
.clv-foto-card .wp-block-post-title a:hover {
  color: var(--accent);
}
.clv-foto-card .gb-text {
  padding: 0 0 0.75rem;
  color: #666;
}
.clv-foto-loop-title,
.clv-foto-loop-title a {
  margin: 0;
  font-weight: 700 !important;
  font-size: 24px !important;
  font-family: "Montserrat" !important;
}
