#topcontainer {
  display: flex;
  justify-content: space-between;
}

#pagetitle {
  font-size: 2.5rem;
  color: #025B7B;
}

#createNew {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #025B7B;
  background-color: #025B7B;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10rem;
}
#createNew:hover {
  cursor: pointer;
  opacity: 0.8;
}

.shimmerBG {
  animation-duration: 2.2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
  background: #ddd;
  background: linear-gradient(to right, #E6E6E6 8%, #E0E0E0 18%, #E6E6E6 33%);
  background-size: 1200px 100%;
}

#articles-container {
  margin-top: 8rem;
  display: flex;
  margin: 8rem auto 2rem auto;
  width: 700px;
  max-width: 90vw;
  flex-direction: column;
}

.article-loading {
  margin-top: 4rem;
}

.article-loading-top {
  width: 100%;
  max-width: 200px;
  height: 1.5rem;
  border-radius: 10rem;
}

.article-loading-subcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-loading-left {
  width: 100%;
}
.article-loading-left div {
  width: 100%;
  max-width: 300px;
  height: 0.5rem;
  border-radius: 10rem;
  margin: 1rem 0;
}
.article-loading-left div:nth-child(1) {
  max-width: 360px;
}
.article-loading-left div:nth-child(3) {
  max-width: 390px;
}

.article-loading-right {
  width: 100%;
  max-width: 6rem;
  height: 6rem;
}

.previsualizercontainer {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  max-width: 95vw;
  justify-content: space-between;
  transition: 0.25s;
  transform: translateY(0);
}

.previsualizertextcontainer {
  width: 60%;
  padding-right: 20px;
}

.previsualizerimagecontainer {
  width: 200px;
}

.prev-dateandauthor {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #7da8b9;
}

.prev-content {
  font-size: 1rem;
  color: #BBB;
  line-height: 150%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 4px;
}

.prev-title {
  font-size: 1.5rem;
}

.prev-content div p {
  font-size: 1rem;
  color: #AAA;
  font-family: "Lora", serif;
  line-height: 150%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prev-item {
  margin-top: 0.5rem;
}

.prev-tags {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
}

.prev-tag {
  background-color: #EEE;
  padding: 0.15rem 1rem;
  font-size: 0.8rem;
  border-radius: 100px;
  margin-top: 0.75rem;
  font-weight: 500;
  color: #025B7B;
}

.prev-image {
  display: flex;
  align-items: center;
  width: 200px;
  margin-top: 0;
  overflow: hidden; /* Oculta el contenido que se desborda del contenedor */
  position: relative; /* Para poder posicionar la imagen dentro del contenedor */
}
.prev-image img {
  display: block;
  max-width: 250px;
  width: auto;
  height: auto;
  border-radius: 0.5rem;
}

#loadmore {
  margin: 4rem auto;
  padding: 0.5rem 1.5rem;
  border: 1px solid black;
  border-radius: 10rem;
  font-size: 1rem;
}
#loadmore:hover {
  cursor: pointer !important;
}

@media (max-width: 480px) {
  #pagetitle {
    text-align: center;
  }
  .previsualizercontainer {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
  }
  .previsualizertextcontainer {
    padding: 0;
    width: 100%;
  }
  .previsualizerimagecontainer {
    margin-top: 1rem;
    width: 100vw;
  }
  .previsualizerimagecontainer .prev-image {
    width: 100vw;
  }
  .previsualizerimagecontainer .prev-image img {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0;
  }
}/*# sourceMappingURL=news.css.map */