/* FREEMEN Trust Highlights v1 (Homepage) */

.fm-hl {
  width: 100%;
  margin: 18px 0;
}

.fm-hl-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.fm-hl-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.fm-hl-title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.2px;
}

.fm-hl-sub {
  font-size: 13px;
  color: #666;
}

.fm-hl-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .fm-hl-grid {
    grid-template-columns: 1fr;
  }
}

.fm-hl-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: #fff;
  padding: 14px 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}

.fm-hl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.fm-hl-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.fm-hl-stars {
  font-size: 18px;
  letter-spacing: 1px;
  color: #111;
  font-weight: 900;
  line-height: 1;
}

.fm-hl-pill {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  color: #111;
  background: rgba(0,0,0,0.03);
  white-space: nowrap;
}

.fm-hl-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
}

.fm-hl-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.10);
  background: #f5f5f5;
}

.fm-hl-text {
  font-size: 14px;
  line-height: 1.45;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600;
}

.fm-hl-name {
  margin-top: 10px;
  font-size: 13px;
  color: #444;
  font-weight: 800;
}

.fm-hl-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  color: #111;
  text-decoration: none;
}

.fm-hl-link:hover {
  text-decoration: underline;
}

.fm-hl-skel {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.fm-hl-skel .bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0f0f0, #e6e6e6, #f0f0f0);
  background-size: 200% 100%;
  animation: fmhl 1.2s infinite linear;
  margin: 10px 0;
}

.fm-hl-skel .bar.sm { width: 55%; }
.fm-hl-skel .bar.md { width: 78%; }
.fm-hl-skel .bar.lg { width: 92%; }

@keyframes fmhl {
  0% { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}
