@charset "UTF-8";
/* Wrapper */
.rcard-row-wrap {
  width: 100%;
  display: block;
  margin: 20px 0;
}

/* Card */
.rcard-row {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  color: #eef3ff; /* متن کلی کارت روی بک‌گراند تصویری */
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  background-color: #ffffff;
  background-image: url("https://fakhraei.clinic/wp-content/uploads/2024/04/Layer-2-1-1.webp");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  /* دسترسی بهتر با فوکوس داخل کارت */
}
.rcard-row:focus-within {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  outline-offset: 2px;
}

/* Media */
.rcard-media {
  flex: 0 0 clamp(110px, 22vw, 220px);
  max-width: 100px;
}

.rcard-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px !important;
}

/* Content */
.rcard-content {
  flex: 1 1 auto;
  min-width: 0;
}

.rcard-title {
  margin: 0 0 6px;
  font-size: 16px !important;
  line-height: 1.35;
  font-weight: 800;
  color: #3f444b;
  word-wrap: break-word;
  position: relative;
}
.rcard-title::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  margin-inline-end: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  background-image: url("https://padra.com/wp-content/uploads/2025/08/download.svg");
}

/* Actions */
.rcard-actions {
  flex: 0 0 auto;
}

.rcard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 14px;
  background: #ff5a00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background, color, box-shadow, transform 0.2s ease;
}
.rcard-btn:hover {
  background: #ffffff;
  color: #ff5a00;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}
.rcard-btn:active {
  transform: translateY(1px);
}
.rcard-btn:focus-visible {
  outline: 2px solid rgba(255, 90, 0, 0.35);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 680px) {
  .rcard-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .rcard-media {
    max-width: 100%;
    flex: 0 0 auto;
  }
  .rcard-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
  }
}
[dir=rtl] .rcard-title {
  text-align: right;
}

/*# sourceMappingURL=rcard-frontend.css.map */
