/* FLOOR TILE USA CAROUSEL */

.ftu-carousel {
  position: relative;
}

.ftu-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.ftu-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
}

.ftu-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  background: #D3D3D3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* IMAGE */
.ftu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BODY */
.ftu-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex: 1;
}

/* TITLE */
.ftu-body h3 {
  margin: 0 0 10px;
  font-size: 16px;
  text-align: center;
}

/* DESCRIPTION (equal height control) */
.ftu-body p {
  flex-grow: 1;
  min-height: 80px; /* THIS creates equal height */
  text-align: center;
}

/* BUTTON */
.ftu-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 14px;
  background: #f88544;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}
html {
  font-family: Arial, Helvetica, sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

/* OPTIONAL: kill alternate font classes */
.font-verdana,
.font-geneva {
  font-family: Arial, Helvetica, sans-serif !important;
}