.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-podcast {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.c-card-podcast__media {
  position: relative;
  display: block;
  width: 100%;
  height: 215px;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.c-card-podcast__media .c-card-podcast__poster,
.c-card-podcast__media > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.c-card-podcast__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.c-card-podcast__play img {
  width: 56px;
  height: 56px;
  display: block;
  transition: transform 0.25s ease;
}
.c-card-podcast__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  flex: 1;
  padding: 15px;
}
.c-card-podcast__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 27px;
  background: #1A73E9;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  white-space: nowrap;
}
.c-card-podcast__title {
  margin: 0;
  color: #216a93;
  font-size: 18px;
  font-weight: bold;
  line-height: 23px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.c-card-podcast__excerpt {
  margin: 0;
  color: #6b7c93;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.c-card-podcast:hover .c-card-podcast__media .c-card-podcast__poster, .c-card-podcast:hover .c-card-podcast__media > img {
  transform: scale(1.08);
}
.c-card-podcast:hover .c-card-podcast__play img {
  transform: scale(1.08);
}/*# sourceMappingURL=index.css.map */