*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer .footer-html-inner {
  display: inline;
  white-space: nowrap;
  width: fit-content;
}

.post-thumbnail-inner {
  margin-left: auto;  
  margin-right: auto; 
  display: block;
  width: 240px;   
  height: 240px; 
  border-radius: 50%;
  overflow: hidden; 
}

.post-thumbnail-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.kb-row-layout-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: flex-start; 
  gap: 40px; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 20px; 
}

.wp-block-kadence-column {
  flex: 0 0 300px;
  max-width: 100%;
  text-align: center; 
}

.wp-block-kadence-column img {
  width: 150px;
  height: 150px; 
  object-fit: cover; 
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px; 
}

#mobile-menu li {
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}

#mobile-menu li a {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  padding: 12px 0px;
  font-size: 14.5px; 
  color: #3B3B3B; 
  text-decoration: none;
  position: relative;
}

#mobile-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0; /* debajo del texto */
  left: 0;
  width: 0;
  height: 2px; /* grosor de la línea */
  background-color: #CAC304; /* color de la línea */
  transition: width 0.3s ease;
}

#mobile-menu li a:hover::after {
  width: 100%;
}

#mobile-menu li a:hover {
  color: #CAC304; /* cambio de color al hover */
}

#mobile-menu li ul.sub-menu li a {
  padding-left: 32px;
  font-size: 15px;
}

.mobile-menu-container {
  overflow-x: hidden;
}

.drawer-content {
  overflow-x: hidden;
}

.drawer-nav-drop-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.wplng-menu-flag {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .post-thumbnail-inner {
    width: 220px;
    height: 220px;
  }
}

#jp-relatedposts {
  display: none !important;
}