/*Fuentes*/
/* Colores */
.btn {
  border: 1px solid #644293;
  padding: 10px 20px;
  color: #644293;
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 20px;
  transition: background-color 0.5s ease;
}
.btn:hover {
  background-color: #644293;
  color: white;
}

.card-post {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}
.card-post__link {
  position: relative;
  display: flex;
}
.card-post__link .card-post__categoria {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  padding: 10px;
  background-color: #5B83A7;
  color: #FFF;
  z-index: 1;
}
.card-post__link .card-post__imagen {
  overflow: hidden;
  width: 100%;
}
.card-post__link .card-post__imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.card-post__contenido .card-post__titulo {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.card-post__contenido .card-post__button .btn-leer-mas {
  font-size: 15px;
  line-height: 20px;
}
.card-post:hover .card-post__link .card-post__imagen img {
  transform: scale(1.05);
}
.card-post:hover .card-post__contenido .card-post__button .btn-leer-mas {
  color: #644293;
  text-decoration: underline;
}/*# sourceMappingURL=index.css.map */