/* ===== 新闻资讯页面专属样式 ===== */
:root {
  --news-card-width: 400px;
  --news-card-radius: 18px;
  --news-card-shadow: 0 6px 24px rgba(30,76,160,0.10);
  --news-card-gap: 36px;
}
body {
  background: linear-gradient(135deg, #eaf6ff 0%, #f5faff 100%);
}
.GGINMOBILIARIAPERUSAC-news-section {
  padding: 64px 0 48px 0;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.GGINMOBILIARIAPERUSAC-news-blocks {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.GGINMOBILIARIAPERUSAC-news-block {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(30,76,160,0.07);
  padding: 36px 4vw 32px 4vw;
  position: relative;
  z-index: 2;
}
.GGINMOBILIARIAPERUSAC-news-block h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a4fa0;
  margin-bottom: 28px;
  letter-spacing: 0.8px;
}
.GGINMOBILIARIAPERUSAC-news-list {
  display: flex;
  gap: var(--news-card-gap);
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.GGINMOBILIARIAPERUSAC-news-card {
  width: var(--news-card-width);
  min-width: 260px;
  background: #f7fbff;
  border-radius: var(--news-card-radius);
  box-shadow: var(--news-card-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.GGINMOBILIARIAPERUSAC-news-card:hover {
  box-shadow: 0 16px 40px rgba(30, 76, 160, 0.13);
  transform: translateY(-6px) scale(1.03);
}
.news-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: var(--news-card-radius);
  border-top-right-radius: var(--news-card-radius);
  background: #eaf6ff;
} 