.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

.c-card-proyectos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}
.c-card-proyectos__media {
  width: 100%;
  height: 215px;
  overflow: hidden;
  flex-shrink: 0;
}
.c-card-proyectos__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.c-card-proyectos__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 15px;
}
.c-card-proyectos__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
.c-card-proyectos__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 27px;
  background: #b9fddb;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.c-card-proyectos__clasificacion {
  color: #216a93;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  white-space: nowrap;
}
.c-card-proyectos__title {
  margin: 0;
  color: #216a93;
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
}
.c-card-proyectos__excerpt {
  margin: 0;
  color: #252a36;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.c-card-proyectos__divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: none;
  background: #252a36;
  opacity: 0.1;
}
.c-card-proyectos__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  color: #0a0e18;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.c-card-proyectos__cta img {
  width: 10px;
  height: 8px;
  display: block;
}
.c-card-proyectos__cta:hover {
  opacity: 0.7;
}
.c-card-proyectos:hover .c-card-proyectos__media img {
  transform: scale(1.1);
}/*# sourceMappingURL=index.css.map */