.section-posts-cards {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(4, 1fr);
}

.section-posts-card {
  display: flex;
  flex-direction: column;
  height: 15.625rem;
  text-decoration: unset;
  background: #fafafa;
  border-radius: 1.25rem;
  border: 0.125rem solid rgba(10, 36, 87, 0.1);

  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-posts-card:hover {
  background: rgba(10, 36, 87, 0.08);
}

.section-posts-card-image {
  position: relative;
}

.section-posts-card-image img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
  border-radius: 1.25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.section-posts-card-desription {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: linear-gradient(to top, rgba(2, 7, 38, 0.5), rgba(2, 7, 38, 0));
  opacity: 0;

  width: -webkit-fill-available;
}

.section-posts-card:hover .section-posts-card-desription {
  opacity: 1;
}

.section-posts-card-desription p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.011rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-posts-card-content {
  padding: 0.8rem 0.7rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.section-posts-card-title p {
  color: #010a44;
  font-size: 1rem;
  line-height: 1.125rem;
  font-weight: 700;

  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-posts-card:hover .section-posts-card-title p {
  color: #00a5cf;
}

.section-posts-card-theme p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.011rem;
  margin-bottom: 0;
}

.section-posts-card-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-grow: 1;
}
.section-posts-card-date {
  display: flex;
  align-items: flex-end;
  gap: 0.62rem;
}
.section-posts-card-date-img {
  display: flex;
}
.section-posts-card-date-img svg {
  width: 1rem;
  height: 1rem;
}
.section-posts-card-date p {
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1rem;
  font-weight: 400;
}

/* .section-posts-card-views {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.section-posts-card-views p {
  color: #144ddd80;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.section-posts-card-views img {
  width: 0.875rem;
  height: 0.875rem;
  object-fit: contain;
} */
