/* =========================
   SIGNLAB CARD (MEDIA + BODY)
========================= */

.signlab-card{
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.25);
  overflow: hidden;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.signlab-card:hover{
  border-color: rgba(67,172,139,.28);
  box-shadow: 0 18px 45px rgba(15,23,42,.14),
              0 40px 90px rgba(15,23,42,.10);
  transform: translateY(-2px);
}

.signlab-card__media{
  position: relative;
  height: 270px;
  background: #e9eef2;
  overflow: hidden;
}

.signlab-card__media img,
.signlab-card__img{
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  margin: 0 !important;
}

.signlab-card__badge{
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(67,172,139,.95);
  box-shadow: 0 10px 30px rgba(15,23,42,.10);
}

.signlab-card__body{ padding: 28px 28px 26px; }

.signlab-card__title{
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  color: #0f172a;
}

.signlab-card__claim{
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 10px;
}

.signlab-card__claim strong{
  color: #43AC8B;
  font-weight: 900;
}

.signlab-card__text{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.signlab-card__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid rgba(67,172,139,.65);
  color: #43AC8B;
  font-weight: 900;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.signlab-card__btn:hover{
  background: #43AC8B;
  color: #fff;
  border-color: #43AC8B;
}

.signlab-card__arrow{ font-size: 18px; line-height: 1; }

/* Responsive */
@media (max-width: 640px){
  .signlab-card__media{ height: 180px; }
  .signlab-card__title{ font-size: 26px; }
}