/* ════════════════════════════════════
   INFO CARDS 
════════════════════════════════════ */
.info-section { padding: 44px var(--page-pad) 48px; background: #f5f5f5; }
.info-inner   { max-width: var(--page-max); margin: 0 auto; }
.info-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.info-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  border: 1px solid #e8e8e8;
  cursor: pointer; transition: box-shadow .2s;
  position: relative;
}
.info-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }

.info-card-img {
  width: 100%; height: 180px;
  overflow: hidden; position: relative;
}
.info-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.info-card:hover .info-card-img img { transform: scale(1.05); }

.info-card-body { padding: 16px 18px 18px; }
.info-card-title {
  font-size: 15px; font-weight: 800;
  color: #333; font-family: var(--font-display);
  margin-bottom: 6px;
}
.info-card-desc { font-size: 12px; color: #777; line-height: 1.5; }

.info-card-arrow {
  position: absolute; bottom: 16px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #999;
  transition: all .15s;
}
.info-card:hover .info-card-arrow { border-color: var(--wa-red); color: var(--wa-red); }