.c-blog {
  padding: 2rem 16px;
  background-color: var(--white);
}

.c-container_blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}

.c-container_blog .title {
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  color: #0b2739;
  text-align: center;
}

.c-boxs_blog {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-item_blog {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 350px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(11, 39, 57, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-item_blog:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 11px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.c-item_blog img {
  width: 100%;
  max-width: 124px;
  height: 100%;
  object-fit: cover;
}

.c-text_blog {
  padding: 10px;
}

.c-text_blog h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--blue);
  margin-bottom: 8px;
}

.c-text_blog p {
  font-size: 14px;
  line-height: 18px;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.only-mb {
  display: block;
}

.c-link_more {
  font-size: 1.2rem;
  color: var(--blue);
  text-decoration: underline;
}

.c-link_more.icn-after-chevron-down-regular::after {
  color: var(--blue);
  transform: rotate(270deg);
  display: -webkit-inline-box;
  font-size: 1rem;
  margin-left: 6px;
}

/* Mobile First: muestra solo los dos primeros ítems */
@media (max-width: 768px) {
  .c-item_blog {
    display: none;
  }

  .c-item_blog:nth-child(-n + 2) {
    display: flex;
  }
}

/* Estilos desktop */
@media (min-width: 768px) {
  .only-mb {
    display: none;
  }

  .c-container_blog {
    gap: 46px;
  }

  .c-container_blog .title {
    font-size: 2rem;
  }

  .c-boxs_blog {
    flex-direction: row;
    height: 131px;
  }
}
