/* ==========================================================================
   YachtFriends — Yacht Specs Grid Widget CSS
   ========================================================================== */

.yf-widget-yf-specs-grid {
  display: grid;
  gap: 15px;
}

.yf-widget-yf-spec-item {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.yf-widget-yf-spec-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #6c9e9e;
}

.yf-widget-yf-spec-item:hover .yf-widget-yf-spec-label {
  color: #6c9e9e;
}

.yf-widget-yf-spec-item:hover .yf-widget-yf-spec-value {
  color: #1a6985;
}

.yf-widget-yf-spec-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.yf-widget-yf-spec-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 4px;
  transition: color 0.3s ease;
}
