.category-list {
  padding: 10px 10%;
  display: grid;
}
.category-list > li > a {
  display: grid;
  height: 30px;
  grid-template-columns: 3fr 1fr;
  font-size: larger;
  font-weight: 400;
  svg {
    height: 50%;
    margin: auto;
    width: auto;
    transition: rotate 0.2s ease-out;
    rotate: 180deg;
  }
  &:hover {
    color: #f29100 !important;
    svg {
      fill: #f29100;
      rotate: 0deg;
    }
  }
}
.sidebar-categories {
  padding-top: 10px;
  max-width: 500px;
  margin: auto;
  background-color: #ededed;
  border-radius: 20px;
}

.sidebar-categories > h2 {
  text-align: center;
}

.content-area-noti {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: 5fr 2fr;
  #sidebar,
  #sidebar div {
    width: 100%;
  }
}
#main-content > .container::before {
  content: none !important;
}

#sidebar {
  grid-column: 2;
  grid-row: 1;
}

#detail-noti-area {
  grid-column: 1;
}

#detail-noti-area > img {
  aspect-ratio: 4/2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-right-radius: 30px;
}

#main-content > .container-noti {
  padding-top: 15px !important;
}
.dateredes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: 10px;
  align-items: center;
  color: #323230;
  font-weight: 600;
}
.et_pb_section {
  padding: 0 !important;
  padding-right: 10px;
  text-wrap-style: pretty;
}
#noti_title_second {
  padding-top: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #19a69c;
}
.noti-title-container {
  position: relative;
  background-color: #15a69c;
  width: 100%;
  height: auto;
  min-height: 150px;
  aspect-ratio: 10 / 2;
  overflow: hidden;
  margin-bottom: 20px;
}

@keyframes zoomOut {
  0% {
    transform: scale3d(0.5, 0.5, 0.5); /* Inicialmente más pequeño */
    opacity: 0; /* Empieza invisible */
  }
  100% {
    transform: scale3d(1, 1, 1); /* Termina al tamaño normal */
    opacity: 1; /* Se vuelve completamente visible */
  }
}


@keyframes zoomOutTranslated {
  0% {
      -webkit-transform: translate(-50%, 0%) scale3d(0.5, 0.5, 0.5);
      transform: translate(-50%, 0%) scale3d(0.5, 0.5, 0.5);
      opacity: 0;
  }
  100% {
      -webkit-transform: translate(-50%, 0%) scale3d(1, 1, 1);
      transform: translate(-50%, 0%) scale3d(1, 1, 1);
      opacity: 1;
  }
}

.top-image {
  -webkit-animation: zoomOutTranslated 1s ease-in-out 0s forwards;
  animation: zoomOutTranslated 1s ease-in-out 0s forwards;
}

.noti-title {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  svg {
    opacity: 0;
    animation: zoomOut 1s ease-in-out 0s forwards;
  }
  h1 {
    margin-bottom: 20px;
    opacity: 0;
    animation: zoomOut 1s ease-in-out 0.1s forwards;
  }
  nav {
    opacity: 0;
    animation: zoomOut 1s ease-in-out 0.7s forwards;
  }
  h1,
  h2,
  a,
  strong {
    color: white;
    font-size: 21px;
  }
  a:hover {
    color: lightgray;
  }
  h1 {
    font-size: 28px;
  }
}
.category-list .active-category > a,
.category-list .active-category > svg {
  color: #f29100;
  fill: #f29100;
}
.top-image {
  width: 60%;
  margin-inline: auto;
  position: relative;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  filter: brightness(1.4);
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .noti-title-container {
    min-height: 300px;
  }
  .top-image {
    width: 100%;
  }
  .content-area-noti {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  #sidebar {
    grid-column: 1;
    grid-row: 2;
  }
}

.container-noticias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-bottom: 50px;
}

.card-noticia {
  width: 40%;
  min-width: 300px;
  display: grid;
  grid-template-rows: min-content auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
}
.card-big {
  width: 30%;
  min-width: 300px;
}

.card-noticia > img {
  aspect-ratio: 4 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.content-noticia {
  padding: 25px;
  display: grid;
  grid-template-rows: min-content 1fr min-content;
}
.content-noticia > p {
  color: #323230;
}
.content-noticia > h2 {
  font-size: 1.4rem;
  word-break: break-word;
  padding-block: 20px;
  color: #15a69c;
}
.content-noticia > a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f29100;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ff6d4a;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px transparent;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 #ff6d4a;
    box-shadow: 0 0 0 0 #ff6d4a;
  }
  70% {
    -moz-box-shadow: 0 0 0 5px transparent;
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    -moz-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}
.see-more-noti {
  width: fit-content;
  display: block;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  padding: 4px 45px;
  color: white;
  background-color: #f29100;
  border: 1px solid transparent;
  margin: auto;
  /*transition: background-color 0.2s ease-in;
   &:hover {
    background-color: white;
    color: #f29100;
    border: 1px solid #f29100;
  } */
}

.see-more-noti:hover {
  animation: pulse 4s infinite;
}

#icon-puzzle {
  aspect-ratio: 1/1;
  width: 70px;
  height: auto;
}
.puzzle-icon {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.post-navigation {
  display: flex;
  justify-content: start;
  margin-top: 20px;
  gap: 20px;
}

.nav-button {
  padding: 10px 15px 10px 10px;
  width: 40px;
  height: 40px;
  display: grid;
  text-decoration: none;
  color: #fff;
  background-color: #f29100;
  border-radius: 4px;
  font-size: 2rem;
  font-weight: 700;
  svg {
    fill: white;
    height: 100%;
    margin: auto;
    width: auto;
    transition: rotate 0.2s ease-out;
    rotate: 0deg;
  }
}
.next-button > svg {
  rotate: 180deg;
}

.nav-button.disabled {
  background-color: #ccc;
  color: #666;
  pointer-events: none;
}

.nav-button:hover:not(.disabled) {
  filter: brightness(80%);
}

.redes-tags {
  display: flex;
  align-items: center;
  gap: 7px;
}
.redes-tags a:hover {
  filter: brightness(0.7);
}
.redes-tags svg {
  aspect-ratio: 1/1;
  margin: -4px;
  width: 55px;
  height: auto;
}

.breadcrumb {
  font-family: "Calibri Light", Helvetica, Arial, Lucida, sans-serif;
  font-size: 21px;
}

.breadcrumb a,
.breadcrumb strong,
.breadcrumb span {
  font-weight: 300;
  font-size: 21px;
}

.breadcrumb strong {
  font-weight: 500;
}

span.active-testimonio {
  font-weight: 500;
}

.content-noticia{
  a{
    display: inline-flex;
    align-items: center;
    svg{
      margin-left: 5px;
      width: auto;
    }
  }
}