.home-wa-tip{
  margin-top:18px;
}

.home-wa-tip__link{
  display:grid;
  grid-template-columns:64px 1fr;
  align-items:center;
  gap:14px;
  width:100%;
  padding:12px 16px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#ffffff;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  color:#111827;
  text-decoration:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-wa-tip__link:hover{
  border-color:#d1d5db;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  transform:translateY(-1px);
  text-decoration:none;
}

.home-wa-tip__media{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 64px;
}

.home-wa-tip__media img{
  width:64px;
  height:64px;
  object-fit:contain;
  display:block;
}

.home-wa-tip__body{
  min-width:0;
}

.home-wa-tip__eyebrow{
  font-size:12px;
  line-height:1.3;
  font-weight:800;
  color:#6b7280;
  margin-bottom:4px;
}

.home-wa-tip__title{
  font-size:18px;
  line-height:1.3;
  font-weight:900;
  color:#111827;
  margin-bottom:4px;
}

.home-wa-tip__text{
  font-size:14px;
  line-height:1.45;
  font-weight:600;
  color:#4b5563;
}

@media (max-width:560px){
  .home-wa-tip__link{
    grid-template-columns:44px 1fr;
    gap:10px;
    padding:9px 12px;
    border-radius:12px;
  }

  .home-wa-tip__media{
    width:44px;
    height:44px;
    flex-basis:44px;
  }

  .home-wa-tip__media img{
    width:44px;
    height:44px;
  }

  .home-wa-tip__eyebrow,
  .home-wa-tip__text{
    display:none;
  }

  .home-wa-tip__title{
    display:block;
    margin-bottom:0;
    font-size:14px;
    line-height:1.35;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}