.latestLite{
  background:
    radial-gradient(60% 55% at 10% 0%, rgba(0,78,137,.10), rgba(255,255,255,0) 60%),
    radial-gradient(55% 55% at 95% 15%, rgba(255,107,53,.12), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #FFFFFF, #F6FAFF);
  padding: clamp(48px, 6vw, 96px) 0;
  color: #0B1220;
}

.latestLite__wrap{ width: var(--rvp-container); margin-inline:auto; }

.latestLite__head{ max-width: 860px; margin-bottom: clamp(18px, 3vw, 34px); }

.latestLite__kicker{
  margin:0 0 10px;
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border: 1px solid rgba(0,78,137,.16);
  background: rgba(255,255,255,.75);
  color: rgba(0,53,96,.92);
  font-size:13px;
  font-weight: 900;
}

.latestLite__title{
  margin:0 0 10px;
  font-size: clamp(24px, 3.1vw, 44px);
  line-height: 1.12;
  color: #003560;
}

.latestLite__lead{
  margin:0;
  color: rgba(11,18,32,.70);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.75;
  max-width: 72ch;
}

.latestLite__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.latestLite__card{
  border-radius: var(--rvp-radius);
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  overflow:hidden;
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.latestLite__card:hover{
  transform: translateY(-3px);
  border-color: rgba(0,78,137,.16);
  box-shadow: 0 22px 62px rgba(0,0,0,.12);
}

.latestLite__thumb{
  display:block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(0,78,137,.12), rgba(255,107,53,.10));
}
.latestLite__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.latestLite__thumbFallback{
  display:block;
  width:100%;
  height:100%;
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(255,107,53,.18), rgba(255,255,255,0) 60%),
    radial-gradient(60% 60% at 70% 60%, rgba(0,78,137,.16), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(0,53,96,.10), rgba(255,255,255,.75));
}

.latestLite__body{ padding: 14px; }

.latestLite__meta{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  align-items:center;
  margin-bottom: 10px;
}

.latestLite__pill{
  font-size:12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,78,137,.08);
  border: 1px solid rgba(0,78,137,.16);
  color: rgba(0,53,96,.92);
  font-weight: 900;
}
.latestLite__date{
  font-size:12px;
  color: rgba(11,18,32,.60);
}

.latestLite__h{
  margin:0 0 8px;
  line-height:1.3;
  font-size: 16px;
}
.latestLite__h a{
  color:#003560;
  text-decoration:none;
}
.latestLite__h a:hover{ text-decoration: underline; }

.latestLite__excerpt{
  margin:0 0 12px;
  color: rgba(11,18,32,.70);
  font-size: 13px;
  line-height: 1.7;
}

.latestLite__read{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  text-decoration:none;
  font-weight: 950;
  color: var(--rvp-primary);
  font-size: 13px;
}

.latestLite__footer{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

.laBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
  transition: transform 150ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}
.laBtn:active{ transform: scale(.985); }

.laBtn--primary{
  color:#fff;
  background: linear-gradient(180deg, var(--rvp-primaryLight), var(--rvp-primary));
  box-shadow: 0 16px 44px rgba(255,107,53,.22);
}
.laBtn--ghost{
  color:#003560;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(0,78,137,.18);
}

.latestLite__empty{
  grid-column: 1 / -1;
  border-radius: var(--rvp-radius);
  border: 1px solid rgba(0,78,137,.16);
  background: rgba(255,255,255,.82);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
.latestLite__empty strong{ display:block; color:#003560; margin-bottom:4px; }
.latestLite__empty span{ display:block; color: rgba(11,18,32,.70); line-height:1.6; font-size:13px; }

[data-la-reveal]{
  opacity:0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
.is-la-revealed[data-la-reveal]{ opacity:1; transform: translateY(0); }

@media (max-width: 980px){
  .latestLite__grid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  [data-la-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
}
