/* ========================================
   COMPONENT: SERVICE TILE
   ======================================== */

.c-tile {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--space-xl);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-tile__icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.c-tile__icon img {
  max-width: 100%;
  max-height: 140px;
  height: auto;
  width: auto;
  display: block;
}

.c-tile__title {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 0 0 var(--space-md);
}

.c-tile__text {
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0 0 var(--space-xl);
}

/* button always at the bottom */
.c-tile__action {
  margin-top: auto;
}

/* optional: make button full width */
.c-tile__btn {
  width: 100%;
}