@charset "UTF-8";
.news-latest {
  background: #fff;
}
.news-latest .container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 24px 20px;
}
@media (min-width: 992px) {
  .news-latest .container {
    padding: 40px 24px;
  }
}
.news-latest .main-title {
  font-weight: 900;
  color: #062a87;
  line-height: 1.1;
  font-size: clamp(18px, 3.2vw, 30px);
  margin-bottom: 28px;
}
.news-latest .main-title .highlight {
  color: #062a87;
  font-weight: 400;
}
.news-latest .main-title .see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c51780;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  float: right;
  display: block;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .news-latest .main-title .see-all {
    margin-top: 30px;
  }
}
.news-latest .main-title .see-all::before {
  content: "→";
  display: inline-block;
}
.news-latest .main-title .see-all:hover {
  text-decoration: underline;
}
.news-latest .grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .news-latest .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-latest .news-card {
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-latest .news-card .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 10px;
  background: #fff;
}
.news-latest .news-card .top-bar .category {
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.news-latest .news-card .top-bar .category.internas {
  background: #c51780;
}
.news-latest .news-card .top-bar .category.seguridad {
  background: #10b981;
}
.news-latest .news-card .media {
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 100px;
}
.news-latest .news-card .media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.news-latest .news-card:hover .media img {
  transform: scale(1.03);
}
.news-latest .news-card .content {
  padding: 22px 24px 26px;
}
.news-latest .news-card .content .date {
  font-size: 14px;
  font-weight: normal;
  color: #062a87;
  margin-bottom: 10px;
}
.news-latest .news-card .content .title a {
  font-size: clamp(14px, 2.2vw, 22px);
  line-height: 1.2;
  font-weight: 600;
  color: #062a87;
  margin: 0 0 10px;
}
.news-latest .news-card .content .excerpt {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}
.news-latest .news-card .content .excerpt p {
  margin: 0 0 8px;
}
