/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.hhs-lang-switch .lang_list_class:after {
left: 115px !important;
}
/* Layouts base */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.col-main { width: 100%; }
.col-sidebar { width: 100%; }

/* HERO listado */
.blog-hero { color: #fff; }
.hero-title { margin: 0 0 8px; font-size: clamp(28px, 4vw, 48px); }
.hero-subtitle { opacity: .9; max-width: 720px; }

/* HERO post con imagen destacada */
.post-hero {
  position: relative;
  background: #111;
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}
.post-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  opacity: .35; filter: grayscale(10%);
}
.post-hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; padding: 0 20px; }
.post-title { margin: 0 0 8px; font-size: clamp(28px, 4vw, 46px); }
.post-meta { opacity: .9; display: flex; gap: 8px; align-items: center; }

/* Sidebar */
.sidebar .widget { margin-bottom: 28px; }
.sidebar h3 { margin: 0 0 12px; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.tag-list a { display: inline-block; padding: 6px 10px; border: 1px solid #ddd; border-radius: 999px; font-size: 13px; text-decoration: none; color: inherit; }

/* Tags del post */
.post-tags { display: flex; gap: 10px; padding: 0; list-style: none; margin-top: 32px; }
.post-tags a { font-size: 13px; border: 1px solid #ddd; padding: 6px 10px; border-radius: 999px; text-decoration: none; color: inherit; }

/* Botón genérico */
.btn { display: inline-block; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.btn-light { background: #fff; color: #111; }

/* Responsive */
@media (max-width: 980px) {
  .grid { grid-template-columns: 1fr; }
}
.thumbnail-link__title h4 !important{
  font-size:18px;
}
.thumbnail-link{
  border: 1 px solid #4ccfe4;
  border-radius: 10px;
}