.wpt-page { background: #f5f7fb; }

.wpt-container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.wpt-hero{
  padding: 64px 0 24px;
  background: linear-gradient(180deg, #eef3ff 0%, #f5f7fb 100%);
  border-bottom: 1px solid rgba(24,50,90,.08);
}

.wpt-h1{
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #12224a;
}

.wpt-sub{
  max-width: 720px;
  margin: 0;
  color: rgba(18,34,74,.72);
  font-size: 16px;
  line-height: 1.6;
}

.wpt-section{ padding: 28px 0 80px; }

.wpt-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .wpt-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .wpt-grid{ grid-template-columns: 1fr; }
}

/* Card */
.wpt-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(24,50,90,.10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(12,30,70,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* Make it feel clickable */
.wpt-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(12,30,70,.10);
  border-color: rgba(31,91,255,.22);
}

/* Focus ring when tabbing into the button/link */
.wpt-card:focus-within{
  border-color: rgba(31,91,255,.45);
  box-shadow: 0 18px 44px rgba(31,91,255,.14);
}

/* Whole-card overlay link */
.wpt-card-overlay{
  position: absolute;
  inset: 0;
  border-radius: 16px;
  z-index: 1;
  text-decoration: none;
}

/* Keep actual content above overlay */
.wpt-card > *{
  position: relative;
  z-index: 2;
}

.wpt-card-title{
  margin: 0 0 8px;
  font-size: 18px;
  color: #12224a;
}

.wpt-card-excerpt{
  margin: 0 0 14px;
  color: rgba(18,34,74,.70);
  line-height: 1.6;
  font-size: 14px;
}

/* Bullets (still simple, but slightly more designed) */
.wpt-bullets{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.wpt-bullets li{
  position: relative;
  padding-left: 24px;
  color: rgba(18,34,74,.82);
  font-size: 14px;
  line-height: 1.4;
}

.wpt-bullets li:before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

/* Footer row gives structure + makes CTA feel intentional */
.wpt-card-foot{
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(24,50,90,.08);
}

.wpt-card-meta{
  font-size: 13px;
  color: rgba(18,34,74,.55);
}

/* Real button CTA (better than tiny text link) */
.wpt-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #1f5bff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(31,91,255,.28);
  box-shadow: 0 10px 22px rgba(31,91,255,.18);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.wpt-btn:hover{
  background: #174ae6;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(31,91,255,.22);
}

/* Pagination */
.wpt-pagination{
  margin-top: 26px;
}

/* Screen-reader only */
.wpt-sr-only{
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
