.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(98, 101, 255, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(98, 101, 255, 0.5);
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0; 
  color: 6265ff;
  line-height: 1.2;
  text-align: left;
}

.meta.blog-time {
  font-size: 0.875rem;
  color: #888;
  font-style: italic;
  margin: 0 0 0.4rem 0;
  user-select: none;
}

.blog-text {
  font-size: 20px;
  color: #444;
  line-height: 1.5;
  flex-grow: 1;
  text-align: left;
}

.entrada-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: white;
}

section.entrada h2{
    font-size: 2rem;
    text-align: center;
    padding: 2rem 0 2rem 0;
}

section.entrada ul {
  list-style: disc;
}

section.entrada ul li::marker {
  color: #6265ff;
}

@media (max-width: 575.98px) {
    .blog-text{
        font-size: 18px;
    }
}