/* Ocultar el checkbox predeterminado */
.filter input[type="checkbox"] {
  appearance: none; /* Para navegadores modernos */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  width: 20px;
  height: 20px;
  border: 2px solid #132e53;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Cuando el checkbox está marcado */
.filter input[type="checkbox"]:checked {
  background-color: #132e53;
  border-color: #132e53;
}

/* Opcional: Cambiar el color del check (✓) */
.filter input[type="checkbox"]:checked::after {
  content: '✓';
  color: white;
  font-size: 16px;
  text-align: center;
  display: block;
  line-height: 20px;
}

.blog-category .blog-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 60px
}
.blog-category .blog-content .dropdown-input{display:none;}
.blog-category .blog-content,.blog-category .blog-content ul.list-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.blog-category .blog-content ul.list-category {
  list-style-type: none;
  margin: 0;
  padding: 0
}

.blog-category .blog-content ul.list-category li {
/*   border-right: 2px solid #dee22a */
  border-right: 2px solid #ddd;
}
.blog-category .blog-content ul.list-category li:last-child{ border-right: 0px solid transparent;}
.blog-category .blog-content ul.list-category li>a {
  color: #132e53;
  display: block;
  font-family: var(--ff-accent);
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  padding: 0 22px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase
}

.blog-category .blog-content ul.list-category li>a>span {
  position: relative
}

.blog-category .blog-content ul.list-category li>a>span:before {
  background-color: #132e53;
  bottom: -8px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
  width: 0
}

.blog-category .blog-content ul.list-category li.active>a>span:before,.blog-category .blog-content ul.list-category li>a:hover>span:before {
  width: calc(100% + 16px)
}

.post-area {
  display: block;
  width: 100%;
  overflow:hidden;
}

.post-area .post-section {
  display: flex;
  vertical-align: top;
  width: 100%;
  flex-wrap:wrap;
}

.post-area .post-section .filter {
  display: inline-block;
  padding-right: 30px;
  width: 25%
}

.post-area .post-section .filter .title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  border: 0;
  color: #132e53;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: LemonMilk,Arial,Helvetica,sans-serif;
  font-size: 20px;
  font-weight: 600;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-top: 2px solid #dee22a;
  justify-content: space-between;
  letter-spacing: 3px;
  line-height: 1.4;
  padding: 24px 0;
  text-transform: uppercase;
  width: 100%
}

.post-area .post-section .filter .collapse ul {
  list-style: none;
  padding-left: 33px
}

.post-area .post-section .filter .collapse ul li {
  margin-bottom: 15px;
  padding-left: 0
}

.post-area .post-section .filter .collapse ul li>a {
  color: #132e53;
  cursor: pointer;
  font-family: Din,Arial,Helvetica,sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.56px;
  line-height: 26px;
  position: relative
}

.post-area .post-section .filter .collapse ul li>a:before {
  background-color: #fff;
  border: 2px solid #132e53;
  border-radius: 0;
  content: "";
  -ms-flex-negative: 0;
  display: inline-block;
  flex-shrink: 0;
  height: 20px;
  left: -33px;
  margin: 0 16px 0 0;
  position: absolute;
  top: 4px;
  width: 20px
}

.post-area .post-section .filter .collapse ul li>a.active:before {
  background: #000;
  background-image: url(https://45751506.fs1.hubspotusercontent-na1.net/hubfs/45751506/check-solid-white.svg);
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.filter-tag {
  transition: all 0.3s ease;
}

.filter-tag li label{
  position:relative;
  color: #132e53;
  cursor: pointer;
  font-family: Din, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.56px;
  line-height: 26px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.filter-tag input[type=checkbox]{ 
  left:-36px !important;
  width: 20px;
  height: 20px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

/* Ghosted state */
.filter-tag label.filter-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #999;
}
.filter-tag label.filter-disabled input[type="checkbox"] {
  border-color: #ccc;
  pointer-events: none;
}

#clear-filters{
  color: #525252;
  cursor: pointer;
  font-family: Din, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.56px;
  line-height: 26px;
  position: relative;
  left: -32px;
  margin-bottom: 15px;
  display: inline-block;
}

#clear-filters span{margin-right:7px;}

.post-area .post-section .filter .filter-title {
  color: #039fb8;
  font-family: LemonMilk, Arial, Helvetica, sans-serif;
  font-size: 21px;
  letter-spacing: normal;
  line-height: 35px;
  text-transform: uppercase;
  position:relative;
  cursor:pointer;
  border-bottom:2px solid #ddd;
}

/* Animated collapse */
.filter-tag {
  overflow: hidden;
  max-height: 2000px; /* generous ceiling for the open state */
  transition: max-height 0.35s ease;
  border-bottom:2px solid #ddd;
}
.filter-tag:not(.open) {
  max-height: 0;
  border-bottom:0px solid transparent;
}

.post-area .post-section .filter .filter-title:before{

  content: '+';  
  line-height: 35px;
  position: absolute;
  right: 20px;
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -5px;
}

.post-area .post-section .filter .filter-title.active:before{
  bottom: 2px;
  content: "-";
  right: 23px;
/*   line-height: 25px; */
}
.post-area .post-section .post-content {
  display: -webkit-box;
  display: -ms-flexbox;

  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 30px;
  grid-auto-rows: auto;
  width: 100%;
  height: auto;
}

.post-area .post-section .right-content {
  display: block;
  width: 75%;
}

.post-area .isotope-pager{
  display:flex;
  width:100%;
  order:3;
  justify-content:center;
  margin-top:30px;
  max-height:31px;
}

.post-area .isotope-pager a{
  margin: 0 0px;
  font-weight: 600;
  font-weight: 400;
  font-size: 17px;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.125;
  color: #132e53;
  text-decoration: none;
  background-color: #fff;
  transition: color 200ms ease-out;
}

  .post-area .isotope-pager a:focus,                                            
  .post-area .isotope-pager a:hover,                                            
  .post-area .isotope-pager a:active,                                           
  .post-area .isotope-pager a.active {                                          
    background-color: #132e53;                                                  
    color: #fff;                                                                
    transition: all .2s;                                                        
  }

/* Pagination arrows */                                                       
  .post-area .isotope-pager a.pager-arrow {                                     
    font-size: 24px;                                                            
    font-weight: 300;                                                           
    line-height: 0.8;                                                           
    padding: 6px 14px;                                                          
  }                                                                             
                                                                                
  .post-area .isotope-pager a.pager-arrow.disabled {                            
    color: #ccc;                                                                
    cursor: not-allowed;                                                        
    pointer-events: none;                                                       
  }

.post-area .post-section .post-content.full-content {
  width:100%;
}
.post-area .post-section .total-post-count {
  display: block;
}

.post-area .post-section .right-content .title-search-row {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0 0 24px 0;
  gap: 1rem;
}

.post-area .post-section .right-content .title-search-row .title-search {
  width: 240px;
  padding: 6px 12px;
  font-family: Din, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #132e53;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 2;
}

.post-area .post-section .right-content .total-post-count {
  left: 270px;
  margin-left: 0;
}

.post-area .post-section .total-post-count p {
  color: #039fb8;
  display: block;
  font-family: Din, Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 0;
  margin-top: 0;
}

.post-area .post-section .post-content .post {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 31%;
  flex: 0 0 31%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  width: calc(100% / 4 - 20px);
  margin:0px 10px 20px 10px;
}

.post-area .post-section .post-content .post .featured-image {
  width: 100%
}

.post-area .post-section .post-content .post .featured-image img {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.post-area .post-section .post-content .post .featured-image img.default-image{
  padding: 15px;
}

.post-area .post-section .post-content .post .post-info {
  display: block;
  padding: 30px 20px 12px;
  text-align: center
}

.post-area .post-section .post-content .post .post-info .category {
  color: #525252;
  font-family: var(--ff-accent);
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
  text-transform: uppercase
}

.post-area .post-section .post-content .post .post-info .post-title {
  color: #132E53;
  font-family: Din,Arial,Helvetica,sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
}

.post-area .post-section .post-content .post .post-info a.btn {
  color: #039fb8;
  display: -webkit-inline-box;
  display: inline-flex;
  font-family: LemonMilk,Arial,Helvetica,sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  margin-top: 20px;
  text-transform: uppercase;
  position:relative;
}
.post-area .post-section .post-content .post .post-info a.btn:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  -moz-transform: scale(0.9999);
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #039FB8;
  margin-left: 8px;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  top: 2px;
  position: relative;
}

.hs-search-field__form label.hs-search-field__label {
  font-family: Din,arial;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.5px;
  line-height: 31px;
  margin-bottom: 7px;
  text-transform: none
}

.hs-search-field__form .hs-search-field__input {
  background-color: #f2f2f2;
  background-image: none;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #555;
  font-size: 18px;
  height: auto;
  line-height: 26px;
  padding: 11px 16px
}

.hs-search-field__form .hs-search-field__button {
  background-color: #039fb8;
  border: 0;
  color: #fff;
  font-family: LemonMilk,Arial,Helvetica,sans-serif;
  font-size: 18px;
  line-height: 1.3333;
  min-width: 96px;
  padding: 13px 32px 12px;
  position: relative;
  text-transform: uppercase;
  z-index: 1
}

/* Non-selectable title */
.post-area .post-section .filter .filter-title {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* medias */
/* XS */
@media (max-width: 992px){

  .post-area .post-section .right-content{width:100%;}
  .post-area .post-section .right-content .title-search-row {padding: 24px 0;}
  .post-area{padding: 0 15px;}
  .post-area .post-section .post-content .post .featured-image img{width:100%;}
  .post-area .post-section .post-content .post{width:calc(50% - 20px);margin:0 10px 20px;}
  .blog-category .blog-content .dropdown-input{display:block;}
  .post-area .post-section{display:block;}
  .post-area .post-section .filter{width:100%;padding-right:0px;}
  .post-area .post-section .post-content .post .post-info .post-title{max-height: inherit;min-height: inherit;}
  .post-area .post-section .post-content{width:100%;grid-template-columns: 1fr 1fr;}
  .post-area .post-section .filter .collapse ul li>a{font-size:16px;}
  .post-area .post-section .filter .collapse ul li {
    margin-bottom: 9px;}
  .post-area .post-section .filter .collapse ul li>a:before{width:16px;height:16px;}
  .post-area .post-section .filter .collapse ul{margin: 0 auto;}
  .post-area .post-section .filter .collapse ul li>a:before{left:-25px;}
  .blog-category .blog-content ul.list-category li{border-right:0px;}
  .blog-category .blog-content ul.list-category li{border-right:0px;}
/*   .post-area .post-section .filter{padding-left:15px;} */
  /* Estilos generales para el contenedor */
  .dropdown-container {
    position: relative;
    width: calc(100% - 30px);
  }

  /* Estilo del "input" simulado */
  .dropdown-input {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background-image: url(data:image/png;base64,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);
    background-position: 97% 50%;
    background-repeat: no-repeat;
    background-size: 20px;
  }

  /* Estilo de la lista desplegable */
  .blog-category .blog-content ul.list-category {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none; /* Oculta la lista inicialmente */
    max-height: 200px; /* Limita el alto de la lista */
    overflow-y: auto;
    z-index: 1000;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  /* Estilo de cada elemento de la lista */
  .list-category li {
    padding: 10px;
    cursor: pointer;
  }

  /* Efecto al pasar el cursor sobre cada opción */
  .list-category li:hover {
    background-color: #f0f0f0;
  }


}

@media (max-width: 767px){
  .post-area .post-section .right-content{width:100%;}
  .post-area .post-section .post-content .post .featured-image img{width:100%;}
  .post-area .post-section .post-content .post{width:100%;margin:0 0px 20px;}
  .post-area .post-section .post-content{width:100%;grid-template-columns: 1fr;}
}
/* SM */
@media (min-width:768px) and (max-width:991px){
  .post-area .post-section .post-content .post {
    width: calc(100% / 3 - 20px);
  }

}

@media (min-width:992px) and (max-width:1199px){
  .post-area .post-section .filter {
    padding-left: 15px;
  }
  .post-area .post-section .post-content .post{width:calc(100% / 4 - 20px);}